diff options
author | midipix <writeonce@midipix.org> | 2016-12-19 18:53:24 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-12-19 18:55:17 -0500 |
commit | 7f8d50abe18471c5a79951ad13b63d1bc125c47e (patch) | |
tree | 9eed3f42999bd37f1295bc8b85255b6d24c2b0ad /include | |
parent | 34d90026b95505886f419c79076fe2916d6f8b7a (diff) | |
download | ntapi-7f8d50abe18471c5a79951ad13b63d1bc125c47e.tar.bz2 ntapi-7f8d50abe18471c5a79951ad13b63d1bc125c47e.tar.xz |
32/64-bit code path: use __SIZEOF_POINTER__ in anticipation of arm support.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_sysinfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ntapi/nt_sysinfo.h b/include/ntapi/nt_sysinfo.h index 3f57a43..aa6cb6e 100644 --- a/include/ntapi/nt_sysinfo.h +++ b/include/ntapi/nt_sysinfo.h @@ -437,7 +437,7 @@ typedef struct _nt_system_handle_information { uint16_t handle; void * object; uint32_t granted_access; -#if defined (__NT64) +#if (__SIZEOF_POINTER__ == 8) uint32_t granted_access_padding; #endif } nt_system_handle_information; |