diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_object.h | 6 | ||||
-rw-r--r-- | include/ntapi/ntapi.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/ntapi/nt_object.h b/include/ntapi/nt_object.h index e66e848..6cd93ce 100644 --- a/include/ntapi/nt_object.h +++ b/include/ntapi/nt_object.h @@ -555,6 +555,12 @@ typedef int32_t __stdcall ntapi_tt_create_keyed_object_directory_entry( __in nt_unicode_string * target_name, __in uint32_t key); +typedef int32_t __stdcall ntapi_tt_keyed_object_to_key( + __in void * hentry, + __out uint32_t * key, + __out void * buffer, + __in size_t buflen); + typedef void __stdcall ntapi_tt_sid_copy( __out nt_sid * dst, __in const nt_sid * src); diff --git a/include/ntapi/ntapi.h b/include/ntapi/ntapi.h index c92a7ac..2f073aa 100644 --- a/include/ntapi/ntapi.h +++ b/include/ntapi/ntapi.h @@ -375,6 +375,7 @@ typedef struct _ntapi_vtbl { ntapi_tt_create_keyed_object_directory * tt_create_keyed_object_directory; 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_keyed_object_to_key * tt_keyed_object_to_key; ntapi_tt_sid_copy * tt_sid_copy; ntapi_tt_sid_compare * tt_sid_compare; |