summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ntapi/nt_string.h5
-rw-r--r--include/ntapi/ntapi.h1
2 files changed, 6 insertions, 0 deletions
diff --git a/include/ntapi/nt_string.h b/include/ntapi/nt_string.h
index d5ad05d..fd9b312 100644
--- a/include/ntapi/nt_string.h
+++ b/include/ntapi/nt_string.h
@@ -56,6 +56,11 @@ typedef int __cdecl ntapi_tt_strncmp_multibyte(
__in const char * b,
__in size_t n);
+typedef int __cdecl ntapi_tt_strncmp_utf16(
+ __in const wchar16_t * a,
+ __in const wchar16_t * b,
+ __in size_t n);
+
typedef void __cdecl ntapi_tt_init_unicode_string_from_utf16(
__out nt_unicode_string * str_dest,
__in wchar16_t * str_src);
diff --git a/include/ntapi/ntapi.h b/include/ntapi/ntapi.h
index 770b9d6..a413e4e 100644
--- a/include/ntapi/ntapi.h
+++ b/include/ntapi/ntapi.h
@@ -403,6 +403,7 @@ typedef struct _ntapi_vtbl {
ntapi_tt_strcmp_multibyte * tt_strcmp_multibyte;
ntapi_tt_strcmp_utf16 * tt_strcmp_utf16;
ntapi_tt_strncmp_multibyte * tt_strncmp_multibyte;
+ ntapi_tt_strncmp_utf16 * tt_strncmp_utf16;
ntapi_tt_aligned_block_memset * tt_aligned_block_memset;
ntapi_tt_aligned_block_memcpy * tt_aligned_block_memcpy;
ntapi_tt_aligned_memcpy_utf16 * tt_aligned_memcpy_utf16;