Synchronize with trunk.
[reactos.git] / base / applications / regedit / regedit.h
1 #ifndef _REGEDIT_H
2 #define _REGEDIT_H
3
4 #define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */
5 #define WIN32_NO_STATUS
6 #include <windows.h>
7
8 #define NTOS_MODE_USER
9 #include <ndk/cmtypes.h>
10
11 #include <commctrl.h>
12 #include <shellapi.h>
13 #include <shlwapi.h>
14 #include <stdio.h>
15 #include <aclapi.h>
16 #include <commdlg.h>
17 #include <cderr.h>
18 #include <objsel.h>
19 #include <assert.h>
20
21 #include "main.h"
22 #include "regproc.h"
23 #include "hexedit.h"
24 #include "security.h"
25
26 #endif
27
28 /* EOF */