HANDLE --> (void *), we can't rely on having included windows.h here
authorSimon Marlow <simonmar@microsoft.com>
Wed, 4 Apr 2007 08:40:18 +0000 (08:40 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Wed, 4 Apr 2007 08:40:18 +0000 (08:40 +0000)
HANDLE is defined to be (void *) anyway, so this shouldn't hurt

includes/RtsExternal.h

index 6e23a9c..0c606e9 100644 (file)
@@ -90,7 +90,7 @@ extern StgInt *signal_handlers;
 #endif
 
 #if defined(mingw32_HOST_OS)
-HANDLE getIOManagerEvent (void);
+void *getIOManagerEvent (void);
 HsWord32 readIOManagerEvent (void);
 void sendIOManagerEvent (HsWord32 event);
 #else