Re: kernel32: CreateMemoryResourceNotification stub should return a waitable handle

2012-02-20 Thread Dan Kegel
On Mon, Feb 20, 2012 at 6:38 AM, Vitaliy Margolen wrote: > +    return CreateEventA(NULL, FALSE, FALSE, "Fake > MemoryResourceNotification"); I don't think you want a named event here. Anonymous would be better, in case the program will ask for another event. >>> >>> Oh, rig

Re: kernel32: CreateMemoryResourceNotification stub should return a waitable handle

2012-02-19 Thread Dan Kegel
On Sun, Feb 19, 2012 at 12:01 PM, Vitaliy Margolen wrote: >> +    return CreateEventA(NULL, FALSE, FALSE, "Fake >> MemoryResourceNotification"); > > I don't think you want a named event here. Anonymous would be better, in > case the program will ask for another event. Oh, right. Anonymous it is,

Re: kernel32: CreateMemoryResourceNotification stub should return a waitable handle

2012-02-19 Thread Vitaliy Margolen
On 02/19/2012 09:26 AM, Dan Kegel wrote: Otherwise jqs spins. Fixes http://bugs.winehq.org/show_bug.cgi?id=29936 +return CreateEventA(NULL, FALSE, FALSE, "Fake MemoryResourceNotification"); I don't think you want a named event here. Anonymous would be better, in case the program will ask