summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_string.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-06-28 15:42:54 -0400
committermidipix <writeonce@midipix.org>2016-06-28 19:46:41 -0400
commita2ea1bdf70166f887457b5462332d2df4f6f54c5 (patch)
tree4ab3559d0e526fc7df2d59edcaec53ccf277430c /include/ntapi/nt_string.h
parent964eed7331c807e553ec42637151fda21b5495d9 (diff)
downloadntapi-a2ea1bdf70166f887457b5462332d2df4f6f54c5.tar.bz2
ntapi-a2ea1bdf70166f887457b5462332d2df4f6f54c5.tar.xz
string functions: added __ntapi_tt_strncmp_utf16().
Diffstat (limited to 'include/ntapi/nt_string.h')
-rw-r--r--include/ntapi/nt_string.h5
1 files changed, 5 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);