summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_uintptr_to_hex_utf16.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/ntapi_tt_uintptr_to_hex_utf16.c')
-rw-r--r--src/string/ntapi_tt_uintptr_to_hex_utf16.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/string/ntapi_tt_uintptr_to_hex_utf16.c b/src/string/ntapi_tt_uintptr_to_hex_utf16.c
index 129a858..0afe43d 100644
--- a/src/string/ntapi_tt_uintptr_to_hex_utf16.c
+++ b/src/string/ntapi_tt_uintptr_to_hex_utf16.c
@@ -7,7 +7,7 @@
#include <psxtypes/psxtypes.h>
static void __fastcall __ntapi_tt_uint_to_hex_utf16(
- __in uint64_t key,
+ __in const uint64_t key,
__out wchar16_t * buffer,
__in unsigned bits)
{
@@ -37,7 +37,7 @@ static void __fastcall __ntapi_tt_uint_to_hex_utf16(
void __fastcall __ntapi_tt_uint16_to_hex_utf16(
- __in uint32_t key,
+ __in const uint32_t key,
__out wchar16_t * formatted_key)
{
__ntapi_tt_uint_to_hex_utf16(
@@ -48,7 +48,7 @@ void __fastcall __ntapi_tt_uint16_to_hex_utf16(
void __fastcall __ntapi_tt_uint32_to_hex_utf16(
- __in uint32_t key,
+ __in const uint32_t key,
__out wchar16_t * formatted_key)
{
__ntapi_tt_uint_to_hex_utf16(
@@ -59,7 +59,7 @@ void __fastcall __ntapi_tt_uint32_to_hex_utf16(
void __fastcall __ntapi_tt_uint64_to_hex_utf16(
- __in uint64_t key,
+ __in const uint64_t key,
__out wchar16_t * formatted_key)
{
__ntapi_tt_uint_to_hex_utf16(
@@ -70,7 +70,7 @@ void __fastcall __ntapi_tt_uint64_to_hex_utf16(
void __fastcall __ntapi_tt_uintptr_to_hex_utf16(
- __in uintptr_t key,
+ __in const uintptr_t key,
__out wchar16_t * formatted_key)
{
#if (__SIZEOF_POINTER__ == 4)