diff options
author | midipix <writeonce@midipix.org> | 2018-03-27 00:00:28 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-03-29 21:56:21 -0400 |
commit | 227c1560530dc822180e71690795d4a97d2d7310 (patch) | |
tree | 4a76b1872d53e29f9a09bd2930056f18ba1695ee /include | |
parent | 808392f1ac4bbd56563f655a099b6870fdeb377b (diff) | |
download | ntapi-227c1560530dc822180e71690795d4a97d2d7310.tar.bz2 ntapi-227c1560530dc822180e71690795d4a97d2d7310.tar.xz |
sid helper interfaces: added ntapi_tt_sid_compare().
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_object.h | 5 | ||||
-rw-r--r-- | include/ntapi/ntapi.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/ntapi/nt_object.h b/include/ntapi/nt_object.h index b76b43b..c89467e 100644 --- a/include/ntapi/nt_object.h +++ b/include/ntapi/nt_object.h @@ -569,4 +569,9 @@ typedef void __stdcall ntapi_tt_sid_copy( __in const nt_sid * src); +typedef int32_t __stdcall ntapi_tt_sid_compare( + __in const nt_sid * sida, + __in const nt_sid * sidb); + + #endif diff --git a/include/ntapi/ntapi.h b/include/ntapi/ntapi.h index d25116c..fbd5694 100644 --- a/include/ntapi/ntapi.h +++ b/include/ntapi/ntapi.h @@ -374,6 +374,7 @@ typedef struct _ntapi_vtbl { ntapi_tt_open_keyed_object_directory * tt_open_keyed_object_directory; ntapi_tt_create_keyed_object_directory_entry * tt_create_keyed_object_directory_entry; ntapi_tt_sid_copy * tt_sid_copy; + ntapi_tt_sid_compare * tt_sid_compare; /* nt_crc32.h */ ntapi_tt_buffer_crc32 * tt_buffer_crc32; |