mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
24 lines
439 B
C
24 lines
439 B
C
#ifndef _SYSSETUP_PCH_
|
|
#define _SYSSETUP_PCH_
|
|
|
|
#include <stdio.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winreg.h>
|
|
#include <wingdi.h>
|
|
#include <winuser.h>
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/rtlfuncs.h>
|
|
#include <setupapi.h>
|
|
#include <syssetup/syssetup.h>
|
|
#include <pseh/pseh2.h>
|
|
|
|
#include "globals.h"
|
|
#include "resource.h"
|
|
|
|
#endif /* _SYSSETUP_PCH_ */
|