OSDN Git Service

2010-08-24 Vinky <rabbit_vinky@users.sourceforge.net>
authorironhead <ironhead>
Tue, 24 Aug 2010 22:25:43 +0000 (22:25 +0000)
committerironhead <ironhead>
Tue, 24 Aug 2010 22:25:43 +0000 (22:25 +0000)
        * include/winbase.h (OVERLAPPED): Correct definition.

winsup/w32api/ChangeLog
winsup/w32api/include/winbase.h

index 51ca6b8..30f8447 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
+
+       * include/winbase.h (OVERLAPPED): Correct definition.
+
 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
 
        * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
index dad3745..95b954c 100644 (file)
@@ -825,8 +825,13 @@ typedef struct _DEBUG_EVENT {
 typedef struct _OVERLAPPED {
        ULONG_PTR Internal;
        ULONG_PTR InternalHigh;
+       union {
+               struct {
        DWORD Offset;
        DWORD OffsetHigh;
+       };
+       PVOID Pointer;
+       };
        HANDLE hEvent;
 } OVERLAPPED,*POVERLAPPED,*LPOVERLAPPED;
 typedef struct _STARTUPINFOA {