GetProcessWindowStation: Supress FIXME in win9x case

Mike McCormack mike at codeweavers.com
Mon Jul 21 04:45:03 CDT 2003


ChangeLog:
* Supress FIXME in win9x case for GetProcessWindowStation

-------------- next part --------------
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;
 }


More information about the wine-patches mailing list