* 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

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