xref: /reactos/dll/win32/secur32/precomp.h (revision c2c66aff)
1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         ReactOS System Libraries
4  * FILE:            lib/secur32/precomp.h
5  * PURPOSE:         Security Library Header
6  * PROGRAMMER:      Alex Ionescu (alex@relsoft.net)
7  */
8 
9 #ifndef _SECUR32_PCH_
10 #define _SECUR32_PCH_
11 
12 #include <stdarg.h>
13 
14 /* SDK/DDK/NDK Headers. */
15 #define WIN32_NO_STATUS
16 #define _INC_WINDOWS
17 #define COM_NO_WINDOWS_H
18 #include <windef.h>
19 #include <winbase.h>
20 #include <winnls.h>
21 #include <winreg.h>
22 #define NTOS_MODE_USER
23 #include <ndk/exfuncs.h>
24 #include <ndk/rtlfuncs.h>
25 
26 #include <secext.h>
27 #include <security.h>
28 
29 #include "secur32_priv.h"
30 #include "thunks.h"
31 
32 #endif /* _SECUR32_PCH_ */
33