diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_object.h | 14 | ||||
-rw-r--r-- | include/ntapi/ntapi.h | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/include/ntapi/nt_object.h b/include/ntapi/nt_object.h index c89467e..63a3a54 100644 --- a/include/ntapi/nt_object.h +++ b/include/ntapi/nt_object.h @@ -542,6 +542,20 @@ typedef int32_t __stdcall ntapi_tt_create_ipc_object_directory_entry( __in nt_unicode_string * target_name, __in uint32_t key); +typedef int32_t __stdcall ntapi_tt_open_dev_object_directory( + __out void ** hdir, + __in uint32_t desired_access, + __in const wchar16_t prefix[6], + __in const nt_guid * ipc_guid); + +typedef int32_t __stdcall ntapi_tt_create_dev_object_directory_entry( + __out void ** hentry, + __in uint32_t desired_access, + __in void * hdir, + __in void * htarget, + __in nt_unicode_string * target_name, + __in const nt_guid * dev_guid); + typedef int32_t __stdcall ntapi_tt_create_keyed_object_directory( __out void ** hdir, __in uint32_t desired_access, diff --git a/include/ntapi/ntapi.h b/include/ntapi/ntapi.h index a4c4b66..79efeb9 100644 --- a/include/ntapi/ntapi.h +++ b/include/ntapi/ntapi.h @@ -370,6 +370,8 @@ typedef struct _ntapi_vtbl { /* nt_object.h */ ntapi_tt_open_ipc_object_directory * tt_open_ipc_object_directory; ntapi_tt_create_ipc_object_directory_entry * tt_create_ipc_object_directory_entry; + ntapi_tt_open_dev_object_directory * tt_open_dev_object_directory; + ntapi_tt_create_dev_object_directory_entry * tt_create_dev_object_directory_entry; 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; |