reactos/dll/win32/kernel32/k32.h
Oleg Dubinskiy 334ab0f2a5 [KERNEL32] Implement SetFileCompletionNotificationModes
Call native Nt* function to do the actual work, similarly to as it done in Wine: 530c183960:/dlls/kernel32/file.c#l258.
Also add/fix some declarations in internal kernel32/public ndk neaders, to fix compilation.
CORE-17821
2021-10-23 16:19:22 +02:00

78 lines
1.6 KiB
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS System Libraries
* FILE: dll/win32/kernel32/k32.h
* PURPOSE: Win32 Kernel Library Header
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
*/
#ifndef __K32_H
#define __K32_H
/* INCLUDES ******************************************************************/
#include <stdio.h>
/* PSDK/NDK Headers */
#define WIN32_NO_STATUS
#include <windef.h>
#include <winbase.h>
#include <wingdi.h>
#include <winreg.h>
#include <wincon.h>
#include <winuser.h>
#undef TEXT
#define TEXT(s) L##s
#include <regstr.h>
#include <tlhelp32.h>
/* Redefine NTDDI_VERSION to 2K3 SP1 to get correct NDK definitions */
#undef NTDDI_VERSION
#define NTDDI_VERSION NTDDI_WS03SP1
#include <ndk/cmfuncs.h>
#include <ndk/exfuncs.h>
#include <ndk/iofuncs.h>
#include <ndk/iotypes.h>
#include <ndk/kdtypes.h>
#include <ndk/kefuncs.h>
#include <ndk/ldrfuncs.h>
#include <ndk/mmfuncs.h>
#include <ndk/obfuncs.h>
#include <ndk/psfuncs.h>
#include <ndk/rtlfuncs.h>
#include <ndk/setypes.h>
#include <ndk/umfuncs.h>
#include <ntstrsafe.h>
/* CSRSS Headers */
#include <csr/csr.h>
#include <win/base.h>
#include <win/basemsg.h>
#include <win/console.h>
#include <win/conmsg.h>
#include <win/vdm.h>
/* DDK Driver Headers */
#include <mountmgr.h>
/* Internal Kernel32 Header */
#include "include/kernel32.h"
/* PSEH for SEH Support */
#include <pseh/pseh2.h>
/* Base Macros */
#include "include/base_x.h"
/* Console API Client Definitions */
#include "include/console.h"
/* Virtual DOS Machines (VDM) Support Definitions */
#include "include/vdm.h"
#endif /* __K32_H */