ReactOS 0.4.17-dev-116-ga4b6fe9
precomp.h
Go to the documentation of this file.
1#ifndef _SYSSETUP_PCH_
2#define _SYSSETUP_PCH_
3
4#include <stdio.h>
5
6#define WIN32_NO_STATUS
7#define _INC_WINDOWS
8#define COM_NO_WINDOWS_H
9
10#include <windef.h>
11#include <winbase.h>
12#include <winreg.h>
13#include <wingdi.h>
14#include <winuser.h>
15#define NTOS_MODE_USER
16#include <ndk/rtlfuncs.h>
17#include <setupapi.h>
18#include <syssetup/syssetup.h>
19#include <pseh/pseh2.h>
20#include <cfgmgr32.h>
21
22#include "globals.h"
23#include "resource.h"
24
25#define EnableDlgItem(hDlg, nID, bEnable) \
26 EnableWindow(GetDlgItem((hDlg), (nID)), (bEnable))
27
28#define ShowDlgItem(hDlg, nID, nCmdShow) \
29 ShowWindow(GetDlgItem((hDlg), (nID)), (nCmdShow))
30
31/* These are public names and values determined from MFC, and compatible with Windows */
32// Property Sheet control IDs (determined with Spy++)
33#define IDC_TAB_CONTROL 0x3020
34#define ID_APPLY_NOW 0x3021
35#define ID_WIZBACK 0x3023
36#define ID_WIZNEXT 0x3024
37#define ID_WIZFINISH 0x3025
38
39#endif /* _SYSSETUP_PCH_ */