summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_hex_utf16_to_uintptr.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-07-30 21:21:21 +0000
committermidipix <writeonce@midipix.org>2017-07-31 08:43:34 -0400
commitb1f553fc960f01e3884d90e4c7ef901ff32d51f1 (patch)
tree194c4f8110ed78edc9b3bef71971b1f6b162ca5f /src/string/ntapi_tt_hex_utf16_to_uintptr.c
parentce6accbc18a68c77e06f43834069565a746a4e78 (diff)
downloadntapi-b1f553fc960f01e3884d90e4c7ef901ff32d51f1.tar.bz2
ntapi-b1f553fc960f01e3884d90e4c7ef901ff32d51f1.tar.xz
string to hex, hex to string: pre-alpha api normalization.
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;