summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_hex_utf16_to_uintptr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/ntapi_tt_hex_utf16_to_uintptr.c')
-rw-r--r--src/string/ntapi_tt_hex_utf16_to_uintptr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/string/ntapi_tt_hex_utf16_to_uintptr.c b/src/string/ntapi_tt_hex_utf16_to_uintptr.c
index 2037057..33478f3 100644
--- a/src/string/ntapi_tt_hex_utf16_to_uintptr.c
+++ b/src/string/ntapi_tt_hex_utf16_to_uintptr.c
@@ -8,7 +8,7 @@
#include <ntapi/nt_status.h>
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)
{
int i;
@@ -62,7 +62,7 @@ int32_t __fastcall __ntapi_tt_hex_utf16_to_uint32(
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)
{
int32_t status;
@@ -91,7 +91,7 @@ int32_t __fastcall __ntapi_tt_hex_utf16_to_uint64(
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)
{
#if (__SIZEOF_POINTER__ == 4)
@@ -103,7 +103,7 @@ int32_t __fastcall __ntapi_tt_hex_utf16_to_uintptr(
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)
{
int32_t ret;