diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_guid.h | 4 | ||||
-rw-r--r-- | include/ntapi/ntapi.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/ntapi/nt_guid.h b/include/ntapi/nt_guid.h index 2c27f23..d688985 100644 --- a/include/ntapi/nt_guid.h +++ b/include/ntapi/nt_guid.h @@ -34,4 +34,8 @@ typedef int32_t __fastcall ntapi_tt_string_to_guid_utf16( __in const nt_guid_str_utf16 * guid_str, __out nt_guid * guid); +typedef int32_t __fastcall ntapi_tt_string_to_guid_utf8( + __in const char * guid_str, + __out nt_guid * guid); + #endif diff --git a/include/ntapi/ntapi.h b/include/ntapi/ntapi.h index a5e91e3..63ff63f 100644 --- a/include/ntapi/ntapi.h +++ b/include/ntapi/ntapi.h @@ -502,6 +502,7 @@ typedef struct _ntapi_vtbl { ntapi_tt_guid_compare * tt_guid_compare; ntapi_tt_guid_to_string_utf16 * tt_guid_to_string_utf16; ntapi_tt_string_to_guid_utf16 * tt_string_to_guid_utf16; + ntapi_tt_string_to_guid_utf8 * tt_string_to_guid_utf8; /* nt_sysinfo.h */ ntapi_tt_get_system_directory_native_path * tt_get_system_directory_native_path; |