summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_uintptr_to_hex_utf16.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_uintptr_to_hex_utf16.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_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)