summaryrefslogtreecommitdiffhomepage
path: root/src/string/ntapi_tt_uintptr_to_hex_utf8.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_utf8.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_utf8.c')
-rw-r--r--src/string/ntapi_tt_uintptr_to_hex_utf8.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/string/ntapi_tt_uintptr_to_hex_utf8.c b/src/string/ntapi_tt_uintptr_to_hex_utf8.c
index 2848916..36e333e 100644
--- a/src/string/ntapi_tt_uintptr_to_hex_utf8.c
+++ b/src/string/ntapi_tt_uintptr_to_hex_utf8.c
@@ -7,7 +7,7 @@
#include <psxtypes/psxtypes.h>
static void __fastcall __ntapi_tt_uint_to_hex_utf8(
- __in uint64_t key,
+ __in const uint64_t key,
__out unsigned char * buffer,
__in unsigned bits)
{
@@ -38,7 +38,7 @@ static void __fastcall __ntapi_tt_uint_to_hex_utf8(
void __fastcall __ntapi_tt_uint16_to_hex_utf8(
- __in uint32_t key,
+ __in const uint32_t key,
__out unsigned char * buffer)
{
__ntapi_tt_uint_to_hex_utf8(key,buffer,16);
@@ -46,7 +46,7 @@ void __fastcall __ntapi_tt_uint16_to_hex_utf8(
void __fastcall __ntapi_tt_uint32_to_hex_utf8(
- __in uint32_t key,
+ __in const uint32_t key,
__out unsigned char * buffer)
{
__ntapi_tt_uint_to_hex_utf8(key,buffer,32);
@@ -54,7 +54,7 @@ void __fastcall __ntapi_tt_uint32_to_hex_utf8(
void __fastcall __ntapi_tt_uint64_to_hex_utf8(
- __in uint64_t key,
+ __in const uint64_t key,
__out unsigned char * buffer)
{
__ntapi_tt_uint_to_hex_utf8(key,buffer,64);
@@ -62,7 +62,7 @@ void __fastcall __ntapi_tt_uint64_to_hex_utf8(
void __fastcall __ntapi_tt_uintptr_to_hex_utf8(
- __in uintptr_t key,
+ __in const uintptr_t key,
__out unsigned char * buffer)
{
#if (__SIZEOF_POINTER__ == 4)