Tweak formatting in resource files
[cygwin-setup.git] / ntdll.h
blob3378ad083714be8e3ed5bd6b94bad8edb15a5196
1 /*
2 * Copyright (c) 2009, Red Hat, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * A copy of the GNU General Public License can be found at
10 * http://www.gnu.org/
14 #ifndef SETUP_NTDLL_H
15 #define SETUP_NTDLL_H
17 #define NTOSAPI
19 #ifdef __MINGW64_VERSION_MAJOR
20 #include <winternl.h>
21 #include <ntdef.h>
22 #include <ntstatus.h>
23 #define DDKAPI __stdcall
24 #else
25 #include "ddk/ntapi.h"
26 #include "ddk/ntifs.h"
27 #endif
29 extern "C" {
30 NTSTATUS DDKAPI NtCreateFile (PHANDLE, ACCESS_MASK, POBJECT_ATTRIBUTES,
31 PIO_STATUS_BLOCK, PLARGE_INTEGER, ULONG, ULONG,
32 ULONG, ULONG, PVOID, ULONG);
33 NTSTATUS DDKAPI NtOpenFile (PHANDLE, ACCESS_MASK, POBJECT_ATTRIBUTES,
34 PIO_STATUS_BLOCK, ULONG, ULONG);
35 NTSTATUS DDKAPI NtClose (HANDLE);
36 NTSTATUS DDKAPI NtQueryAttributesFile (POBJECT_ATTRIBUTES,
37 PFILE_BASIC_INFORMATION);
38 NTSTATUS DDKAPI NtQueryInformationFile (HANDLE, PIO_STATUS_BLOCK, PVOID,
39 ULONG, FILE_INFORMATION_CLASS);
40 NTSTATUS DDKAPI NtSetInformationFile (HANDLE, PIO_STATUS_BLOCK, PVOID, ULONG,
41 FILE_INFORMATION_CLASS);
42 ULONG NTAPI RtlNtStatusToDosError (NTSTATUS);
43 VOID NTAPI RtlInitUnicodeString (PUNICODE_STRING, PCWSTR);
46 #endif /* SETUP_NTDLL_H */