diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-02-22 21:24:59 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-02-22 21:24:59 +0100 |
commit | fb467859698b0dff8054c24593ed91cc00b742f2 (patch) | |
tree | 3172ba58c11259cccdc1530ae6c8242bd847c3c3 | |
parent | 890dcabbde506e9545278311918b00d8e1d7b710 (diff) | |
parent | 8e0e7cb818dd3baea4fb692c85d214ff014c78f1 (diff) | |
download | Nim-fb467859698b0dff8054c24593ed91cc00b742f2.tar.gz |
Merge pull request #2192 from apense/devel
Corrected SYSTEM_INFO structure to match pointer type on 64-bit systems
-rw-r--r-- | lib/windows/windows.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/windows/windows.nim b/lib/windows/windows.nim index f0895217b..43c595a64 100644 --- a/lib/windows/windows.nim +++ b/lib/windows/windows.nim @@ -11616,7 +11616,7 @@ type dwPageSize*: DWORD lpMinimumApplicationAddress*: LPVOID lpMaximumApplicationAddress*: LPVOID - dwActiveProcessorMask*: DWORD + dwActiveProcessorMask*: DWORD_PTR dwNumberOfProcessors*: DWORD dwProcessorType*: DWORD dwAllocationGranularity*: DWORD |