diff options
author | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-08-24 22:25:44 +0000 |
---|---|---|
committer | Chris Sutcliffe <ir0nh34d@users.sourceforge.net> | 2010-08-24 22:25:44 +0000 |
commit | c7a5ff6c03aa104c60daff6e4aa11926de28d232 (patch) | |
tree | 1c2267b8c51d4abd77acc95e190eb449644b00e5 /winsup/w32api/include/winbase.h | |
parent | b075ce0ecd0a142a2ee79fcad0e45027b9d7a87b (diff) | |
download | cygnal-c7a5ff6c03aa104c60daff6e4aa11926de28d232.tar.gz cygnal-c7a5ff6c03aa104c60daff6e4aa11926de28d232.tar.bz2 cygnal-c7a5ff6c03aa104c60daff6e4aa11926de28d232.zip |
2010-08-24 Vinky <rabbit_vinky@users.sourceforge.net>
* include/winbase.h (OVERLAPPED): Correct definition.
Diffstat (limited to 'winsup/w32api/include/winbase.h')
-rw-r--r-- | winsup/w32api/include/winbase.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/winsup/w32api/include/winbase.h b/winsup/w32api/include/winbase.h index dad37454e..95b954c09 100644 --- a/winsup/w32api/include/winbase.h +++ b/winsup/w32api/include/winbase.h @@ -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 { |