1 #ifndef _REGEDIT_H 2 #define _REGEDIT_H 3 4 #define COBJMACROS 5 #define WIN32_LEAN_AND_MEAN /* Exclude rarely-used stuff from Windows headers */ 6 #define WIN32_NO_STATUS 7 #include <windows.h> 8 #include <commctrl.h> 9 #include <shlwapi.h> 10 #include <stdio.h> 11 #include <aclapi.h> 12 #include <shellapi.h> 13 #include <strsafe.h> 14 #include <stdlib.h> 15 16 #include "main.h" 17 #include "hexedit.h" 18 #include "security.h" 19 #include "wine/debug.h" 20 21 #endif /* _REGEDIT_H */ 22