blob: f62b8b50fe05ef3649b8e5dd73a1b140d59694e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/********************************************************/
/* ntapi: Native API core library */
/* Copyright (C) 2013--2016 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.NTAPI. */
/********************************************************/
#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 desired_access,
__in uint32_t open_options,
__out int32_t * type)
{
return NT_STATUS_MORE_PROCESSING_REQUIRED;
}
|