| |
| |
| |
| |
| |
| |
| #include <ntapi/ntapi.h> |
| #include <ntapi/nt_file.h> |
| #include "ntapi_impl.h" |
| |
| int32_t __stdcall __ntapi_tt_open_logical_parent_directory( |
| __out void ** hparent, |
| __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, |
| __out int * reserved) |
| { |
| (void)hparent; |
| (void)hdir; |
| (void)buffer; |
| (void)buffer_size; |
| (void)oattr; |
| (void)desired_access; |
| (void)share_access, |
| (void)open_options; |
| (void)reserved; |
| |
| return NT_STATUS_NOT_IMPLEMENTED; |
| } |