summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ntapi/nt_string.h')
-rw-r--r--include/ntapi/nt_string.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/ntapi/nt_string.h b/include/ntapi/nt_string.h
index fb76ed1..4fddf8f 100644
--- a/include/ntapi/nt_string.h
+++ b/include/ntapi/nt_string.h
@@ -117,62 +117,62 @@ typedef void * __cdecl ntapi_tt_generic_memcpy(
__in size_t bytes);
typedef void __fastcall ntapi_tt_uint16_to_hex_utf16(
- __in uint16_t key,
+ __in const uint16_t key,
__out wchar16_t * formatted_key);
typedef void __fastcall ntapi_tt_uint32_to_hex_utf16(
- __in uint32_t key,
+ __in const uint32_t key,
__out wchar16_t * formatted_key);
typedef void __fastcall ntapi_tt_uint64_to_hex_utf16(
- __in uint64_t key,
+ __in const uint64_t key,
__out wchar16_t * formatted_key);
typedef void __fastcall ntapi_tt_uintptr_to_hex_utf16(
- __in uintptr_t key,
+ __in const uintptr_t key,
__out wchar16_t * formatted_key);
typedef int32_t __fastcall ntapi_tt_hex_utf16_to_uint16(
- __in wchar16_t hex_key_utf16[4],
+ __in const wchar16_t hex_key_utf16[4],
__out uint16_t * key);
typedef int32_t __fastcall ntapi_tt_hex_utf16_to_uint32(
- __in wchar16_t hex_key_utf16[8],
+ __in const wchar16_t hex_key_utf16[8],
__out uint32_t * key);
typedef int32_t __fastcall ntapi_tt_hex_utf16_to_uint64(
- __in wchar16_t hex_key_utf16[16],
+ __in const wchar16_t hex_key_utf16[16],
__out uint64_t * key);
typedef int32_t __fastcall ntapi_tt_hex_utf16_to_uintptr(
- __in wchar16_t hex_key_utf16[],
+ __in const wchar16_t hex_key_utf16[],
__out uintptr_t * key);
typedef void __fastcall ntapi_tt_uint16_to_hex_utf8(
- __in uint32_t key,
+ __in const uint32_t key,
__out unsigned char * buffer);
typedef void __fastcall ntapi_tt_uint32_to_hex_utf8(
- __in uint32_t key,
+ __in const uint32_t key,
__out unsigned char * buffer);
typedef void __fastcall ntapi_tt_uint64_to_hex_utf8(
- __in uint64_t key,
+ __in const uint64_t key,
__out unsigned char * buffer);
typedef void __fastcall ntapi_tt_uintptr_to_hex_utf8(
- __in uintptr_t key,
+ __in const uintptr_t key,
__out unsigned char * buffer);
#endif