Re: user32: Test destroying the cursor of a parent process.

2007-12-27 Thread Dmitry Timoshkov
Andrew Riedi [EMAIL PROTECTED] wrote: changelog: user32: Test destroying the cursor of a parent process. This doesn't look at all like a suggested way to test interprocess cursor handles we discussed on IRC: create a process, create a window in it, use SendMessage to pass requests/results in

Re: [wintab32] Refine how we determine cursor types; use that to discard non tablet devices.

2007-12-27 Thread Robert Shearman
Jeremy White wrote: +/* FIXME: strcasestr is not available on all platforms; implement a simple version */ +static char * poormans_strcasestr(const char *haystack, const char *needle) This is something that can be put in include/wine/port.h. -- Rob Shearman

Re: Compile info patch

2007-12-27 Thread Zachary Goldberg
On Dec 27, 2007 11:10 AM, Steven Edwards [EMAIL PROTECTED] wrote: On Dec 27, 2007 7:27 AM, Alexandre Julliard [EMAIL PROTECTED] wrote: This stuff has nothing to do in the code, particularly not in the loader. If you want to check the result of configure you should look at config.log. If you

splitting out on_winver_change() and friends

2007-12-27 Thread Robert Millan
Hi I'm writing a small application to automate the process of setting Windows version for executables that are known to require a specific one. I'd like it to use the knowledge about defining Windows versions contained in winecfg/appdefaults.c instead of duplicating/forking code from it. Would

winelib and exceptions

2007-12-27 Thread Jérôme Gardou
Hello. I'm trying to handle exceptions in a winelib program i'm writing. after #include exceptions.h I'm using the GetExceptionInformation() function, but then winegcc complains that __eptr has not been defined. Any tip/idea on what's going on ?