2006-11-08 11:47:44 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS System Libraries
|
|
|
|
* FILE: lib/secur32/precomp.h
|
|
|
|
* PURPOSE: Security Library Header
|
|
|
|
* PROGRAMMER: Alex Ionescu (alex@relsoft.net)
|
|
|
|
*/
|
|
|
|
|
2014-02-07 18:02:02 +00:00
|
|
|
#ifndef _SECUR32_PCH_
|
|
|
|
#define _SECUR32_PCH_
|
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2006-11-08 11:47:44 +00:00
|
|
|
/* SDK/DDK/NDK Headers. */
|
|
|
|
#define WIN32_NO_STATUS
|
2013-01-24 23:00:42 +00:00
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
2014-08-30 21:31:32 +00:00
|
|
|
#include <winnls.h>
|
|
|
|
#include <winreg.h>
|
2006-11-08 11:47:44 +00:00
|
|
|
#define NTOS_MODE_USER
|
2016-09-22 11:27:05 +00:00
|
|
|
#include <ndk/exfuncs.h>
|
2011-08-14 17:31:30 +00:00
|
|
|
#include <ndk/rtlfuncs.h>
|
2006-11-08 11:47:44 +00:00
|
|
|
|
|
|
|
#include <secext.h>
|
|
|
|
#include <security.h>
|
2014-02-07 18:02:02 +00:00
|
|
|
|
2014-08-30 21:31:32 +00:00
|
|
|
#include "secur32_priv.h"
|
|
|
|
#include "thunks.h"
|
|
|
|
|
2014-02-07 18:02:02 +00:00
|
|
|
#endif /* _SECUR32_PCH_ */
|