From 7f8d50abe18471c5a79951ad13b63d1bc125c47e Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 19 Dec 2016 18:53:24 -0500 Subject: 32/64-bit code path: use __SIZEOF_POINTER__ in anticipation of arm support. --- src/string/ntapi_tt_hex_utf16_to_uintptr.c | 4 ++-- src/string/ntapi_tt_uintptr_to_hex_utf16.c | 4 ++-- src/string/ntapi_tt_uintptr_to_hex_utf8.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/string') diff --git a/src/string/ntapi_tt_hex_utf16_to_uintptr.c b/src/string/ntapi_tt_hex_utf16_to_uintptr.c index 494e5ef..0edc870 100644 --- a/src/string/ntapi_tt_hex_utf16_to_uintptr.c +++ b/src/string/ntapi_tt_hex_utf16_to_uintptr.c @@ -94,9 +94,9 @@ int32_t __fastcall __ntapi_tt_hex_utf16_to_uintptr( __in wchar16_t hex_key_utf16[], __out uintptr_t * key) { - #if defined (__NT32) + #if (__SIZEOF_POINTER__ == 4) return __ntapi_tt_hex_utf16_to_uint32(hex_key_utf16,key); - #elif defined (__NT64) + #elif (__SIZEOF_POINTER__ == 8) return __ntapi_tt_hex_utf16_to_uint64(hex_key_utf16,key); #endif } diff --git a/src/string/ntapi_tt_uintptr_to_hex_utf16.c b/src/string/ntapi_tt_uintptr_to_hex_utf16.c index bb7ae8c..2cd0b69 100644 --- a/src/string/ntapi_tt_uintptr_to_hex_utf16.c +++ b/src/string/ntapi_tt_uintptr_to_hex_utf16.c @@ -73,12 +73,12 @@ void __fastcall __ntapi_tt_uintptr_to_hex_utf16( __in uintptr_t key, __out wchar16_t * formatted_key) { - #if defined (__NT32) + #if (__SIZEOF_POINTER__ == 4) __ntapi_tt_uint_to_hex_utf16( key, formatted_key, 32); - #elif defined (__NT64) + #elif (__SIZEOF_POINTER__ == 8) __ntapi_tt_uint_to_hex_utf16( key, formatted_key, diff --git a/src/string/ntapi_tt_uintptr_to_hex_utf8.c b/src/string/ntapi_tt_uintptr_to_hex_utf8.c index 7fb1dc5..d18725b 100644 --- a/src/string/ntapi_tt_uintptr_to_hex_utf8.c +++ b/src/string/ntapi_tt_uintptr_to_hex_utf8.c @@ -65,9 +65,9 @@ void __fastcall __ntapi_tt_uintptr_to_hex_utf8( __in uintptr_t key, __out unsigned char * buffer) { - #if defined (__NT32) + #if (__SIZEOF_POINTER__ == 4) __ntapi_tt_uint_to_hex_utf8(key,buffer,32); - #elif defined (__NT64) + #elif (__SIZEOF_POINTER__ == 8) __ntapi_tt_uint_to_hex_utf8(key,buffer,64); #endif } -- cgit v1.2.3