On 2014-04-29 13:14, dquintana(a)svn.reactos.org wrote:
> [SHELL32]
> * Make use of IID_NULL_PPV_ARG in all the calls to GetUIObjectOf, and fix one instance of mismatched riid/pointer.
I don't see that mismatch. What am I missing? ;)
Let's bring up the webOS topic again. There is an interesting idea to port Nyx portability layer to Win32 and thus make Open webOS running in ReactOS/Windows. Nice user interface would be a benefit!
http://www.openwebosproject.org/docs/architecture#.U1l8Uvl_vTo
--
Best regards,
Alexander Reachitskiy
Hello,
Let me invite you to the monthly status meeting taking place last
Thursday of this month, 24th of April, 19:00 UTC. And this date is very
close to now!
IRC service will only be started shortly before the meeting. Your
participation passwords and server address will be emailed to you
shortly before the meeting starts, and they are going to be different
once again as they are not stored in any database. Hopefully it's not
much of inconvenience.
If someone still is not getting passwords sent before a meeting - please
email Pierre before the meeting started to get one.
Please send agenda proposals to me before the meeting, so that we can
start with a proposed agenda.
Regards,
Aleksey Bragin
On 2014-04-22 22:46, aandrejevic(a)svn.reactos.org wrote:
> --- branches/ntvdm/subsystems/ntvdm/ntvdm.c [iso-8859-1] (original)
> +++ branches/ntvdm/subsystems/ntvdm/ntvdm.c [iso-8859-1] Tue Apr 22 20:46:50 2014
> @@ -196,6 +197,11 @@
> EmulatorInterrupt(0x23);
> break;
> }
> + case CTRL_LAST_CLOSE_EVENT:
> + {
> + if (CommandThread) TerminateThread(CommandThread, 0);
> + break;
> + }
> default:
> {
> /* Stop the VDM if the user logs out or closes the console */
Wasn't there an event to tell that thread to exit?
Using TerminateThread like this feels icky.
Hey!
That's indeed a typo!
Can someone commit a fix? I can't before Monday evening.
Thanks!
Pierre
-------- Message original --------
Objet : Re: [ros-dev] [ros-diffs] [pschweitzer] 62779: [CDFS] Convert FCB pathname from simple buffer to unicode string. Please carefully review if I missed something
De : Alexander Andrejevic <theflash(a)sdf.lonestar.org>
À : ReactOS Development List <ros-dev(a)reactos.org>
Cc :
Hi,
Correct me if I'm wrong, but the original version didn't modify the string length.
Are you sure that should be "=" and not "=="?
Regards,
Alex
On Sat, Apr 19, 2014 at 09:31:44AM +0200, Thomas Faber wrote:
> On 2014-04-18 23:40, pschweitzer(a)svn.reactos.org wrote:
> > --- trunk/reactos/drivers/filesystems/cdfs/fcb.c [iso-8859-1] (original)
> > +++ trunk/reactos/drivers/filesystems/cdfs/fcb.c [iso-8859-1] Fri Apr 18 21:40:02 2014
> > @@ -129,7 +131,7 @@
> > BOOLEAN
> > CdfsFCBIsRoot(PFCB Fcb)
> > {
> > - return(wcscmp(Fcb->PathName, L"\\") == 0);
> > + return (Fcb->PathName.Length = sizeof(WCHAR) && Fcb->PathName.Buffer[0] == L'\\');
> > }
>
> ==
>
>
>
> Generally I'm seeing a lot of manual work where
> RtlInitEmptyUnicodeString and RtlCopyUnicodeString could be used.
>
> _______________________________________________
> Ros-dev mailing list
> Ros-dev(a)reactos.org
> http://www.reactos.org/mailman/listinfo/ros-dev
--
Alexander Andrejevic <theflash(a)sdf.lonestar.org>
SDF Public Access UNIX System - http://sdf.lonestar.org
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev