xref: /reactos/base/applications/regedit/regedit.h (revision 5efb6e3d)
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 #include <commctrl.h>
8 #include <shlwapi.h>
9 #include <stdio.h>
10 #include <aclapi.h>
11 #include <shellapi.h>
12 
13 #include "main.h"
14 #include "hexedit.h"
15 #include "security.h"
16 #include "wine/debug.h"
17 
18 #endif /* _REGEDIT_H */
19