summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_string.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ntapi/nt_string.h')
-rw-r--r--include/ntapi/nt_string.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/include/ntapi/nt_string.h b/include/ntapi/nt_string.h
index 059a7ee..b24de3d 100644
--- a/include/ntapi/nt_string.h
+++ b/include/ntapi/nt_string.h
@@ -177,4 +177,32 @@ typedef void __fastcall ntapi_tt_uintptr_to_hex_utf8(
__in const uintptr_t key,
__out unsigned char * buffer);
+
+typedef int32_t __stdcall ntapi_tt_uintptr_to_dec_utf16(
+ __in uintptr_t key,
+ __out wchar16_t * wstrbuf,
+ __in size_t buflen,
+ __out ssize_t * length);
+
+
+typedef int32_t __stdcall ntapi_tt_uintptr_to_dec_utf8(
+ __in uintptr_t key,
+ __out unsigned char * strbuf,
+ __in size_t buflen,
+ __out ssize_t * length);
+
+
+typedef int32_t __stdcall ntapi_tt_uintptr_to_dec_null_utf16(
+ __in uintptr_t key,
+ __out wchar16_t * wstrbuf,
+ __in size_t buflen,
+ __out ssize_t * length);
+
+
+typedef int32_t __stdcall ntapi_tt_uintptr_to_dec_null_utf8(
+ __in uintptr_t key,
+ __out unsigned char * strbuf,
+ __in size_t buflen,
+ __out ssize_t * length);
+
#endif