diff options
Diffstat (limited to 'src/fs')
-rw-r--r-- | src/fs/ntapi_tt_open_logical_parent_directory.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fs/ntapi_tt_open_logical_parent_directory.c b/src/fs/ntapi_tt_open_logical_parent_directory.c index 83cbe1f..b9aa2a3 100644 --- a/src/fs/ntapi_tt_open_logical_parent_directory.c +++ b/src/fs/ntapi_tt_open_logical_parent_directory.c @@ -13,14 +13,18 @@ int32_t __stdcall __ntapi_tt_open_logical_parent_directory( __in void * hdir, __out uintptr_t * buffer, __in uint32_t buffer_size, + __in uint32_t oattr, __in uint32_t desired_access, + __in uint32_t share_access, __in uint32_t open_options) { (void)hparent; (void)hdir; (void)buffer; (void)buffer_size; + (void)oattr; (void)desired_access; + (void)share_access, (void)open_options; return NT_STATUS_MORE_PROCESSING_REQUIRED; |