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.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/ntapi/nt_string.h b/include/ntapi/nt_string.h
index f85887d..6650d60 100644
--- a/include/ntapi/nt_string.h
+++ b/include/ntapi/nt_string.h
@@ -157,6 +157,24 @@ typedef int32_t __fastcall ntapi_tt_hex_utf16_to_uintptr(
__in const wchar16_t hex_key_utf16[],
__out uintptr_t * key);
+typedef int32_t __fastcall ntapi_tt_hex_utf8_to_uint16(
+ __in const unsigned char hex_key_utf16[4],
+ __out uint16_t * key);
+
+
+typedef int32_t __fastcall ntapi_tt_hex_utf8_to_uint32(
+ __in const unsigned char hex_key_utf16[8],
+ __out uint32_t * key);
+
+
+typedef int32_t __fastcall ntapi_tt_hex_utf8_to_uint64(
+ __in const unsigned char hex_key_utf16[16],
+ __out uint64_t * key);
+
+
+typedef int32_t __fastcall ntapi_tt_hex_utf8_to_uintptr(
+ __in const unsigned char hex_key_utf16[],
+ __out uintptr_t * key);
typedef void __fastcall ntapi_tt_uint16_to_hex_utf8(
__in const uint32_t key,