ChangeLog: * Supress FIXME in win9x case for GetProcessWindowStation
Index: dlls/user/misc.c =================================================================== RCS file: /home/wine/wine/dlls/user/misc.c,v retrieving revision 1.11 diff -u -r1.11 misc.c --- dlls/user/misc.c 13 Jan 2003 20:36:39 -0000 1.11 +++ dlls/user/misc.c 21 Jul 2003 09:28:26 -0000 @@ -67,6 +67,11 @@ */ HWINSTA WINAPI GetProcessWindowStation(void) { + if( GetVersion() & 0x80000000 ) + { + SetLastError( ERROR_CALL_NOT_IMPLEMENTED ); + return NULL; + } FIXME("(void): stub\n"); return (HWINSTA)1; }