diff options
author | midipix <writeonce@midipix.org> | 2016-12-12 17:10:46 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-12-12 17:10:46 -0500 |
commit | cd3f20f7642e15bd1a4835f754b4c4e620a03dc8 (patch) | |
tree | e3cf0780360a1f10ea6a852fbaa122bfdf66ab98 | |
parent | fa20def8caa8623691d50bfb44e660eb48802dc6 (diff) | |
download | ntapi-cd3f20f7642e15bd1a4835f754b4c4e620a03dc8.tar.bz2 ntapi-cd3f20f7642e15bd1a4835f754b4c4e620a03dc8.tar.xz |
api headers: foreign toolchain support: fix type definition of wchar32_t.
-rw-r--r-- | include/ntapi/nt_abi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ntapi/nt_abi.h b/include/ntapi/nt_abi.h index 95fc9bf..57dc855 100644 --- a/include/ntapi/nt_abi.h +++ b/include/ntapi/nt_abi.h @@ -49,7 +49,7 @@ #endif typedef unsigned short wchar16_t; -typedef unsigned int wchar32_t; +typedef int wchar32_t; #endif |