Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #84 from Numpsy/master
Browse files Browse the repository at this point in the history
Issue 6909
  • Loading branch information
complexmath committed Nov 11, 2011
2 parents 8d7a688 + 3424872 commit d7d6862
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/core/sys/windows/windows.d
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -323,11 +323,16 @@ enum
}

struct OVERLAPPED {
DWORD Internal;
DWORD InternalHigh;
DWORD Offset;
DWORD OffsetHigh;
HANDLE hEvent;
ULONG_PTR Internal;
ULONG_PTR InternalHigh;
union {
struct {
DWORD Offset;
DWORD OffsetHigh;
}
void* Pointer;
}
HANDLE hEvent;
}

struct SECURITY_ATTRIBUTES {
Expand Down

0 comments on commit d7d6862

Please sign in to comment.