2010-08-24 Vinky <rabbit_vinky@users.sourceforge.net>

* include/winbase.h (OVERLAPPED): Correct definition.
This commit is contained in:
Chris Sutcliffe 2010-08-24 22:25:44 +00:00
parent b075ce0ecd
commit c7a5ff6c03
2 changed files with 9 additions and 0 deletions

View 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

View 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 {