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 #include <strsafe.h> 13 #include <stdlib.h> 14 15 #include "main.h" 16 #include "hexedit.h" 17 #include "security.h" 18 #include "wine/debug.h" 19 20 #endif /* _REGEDIT_H */ 21