Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>2010-08-25 02:25:44 +0400
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>2010-08-25 02:25:44 +0400
commitc7a5ff6c03aa104c60daff6e4aa11926de28d232 (patch)
tree1c2267b8c51d4abd77acc95e190eb449644b00e5
parentb075ce0ecd0a142a2ee79fcad0e45027b9d7a87b (diff)
2010-08-24 Vinky <rabbit_vinky@users.sourceforge.net>
* include/winbase.h (OVERLAPPED): Correct definition.
-rw-r--r--winsup/w32api/ChangeLog4
-rw-r--r--winsup/w32api/include/winbase.h5
2 files changed, 9 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 51ca6b808..30f84479d 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -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
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 {