1 #ifndef ACPPAGE_PRECOMP_H 2 #define ACPPAGE_PRECOMP_H 3 4 #define COBJMACROS 5 #define WIN32_NO_STATUS 6 #define _INC_WINDOWS 7 #define COM_NO_WINDOWS_H 8 #define NTOS_MODE_USER 9 10 #include <windef.h> 11 #include <winbase.h> 12 #include <shlobj.h> 13 #include <tchar.h> 14 #include <strsafe.h> 15 #include <atlbase.h> 16 #include <atlcom.h> 17 #include <atlsimpcoll.h> 18 #include <atlstr.h> 19 #include <atlwin.h> 20 #include <rosdlgs.h> 21 22 ULONG DbgPrint(PCH Format,...); 23 #include <apphelp.h> 24 25 extern const GUID CLSID_CLayerUIPropPage; 26 extern HMODULE g_hModule; 27 extern LONG g_ModuleRefCnt; 28 29 EXTERN_C BOOL WINAPI GetExeFromLnk(PCWSTR pszLnk, PWSTR pszExe, size_t cchSize); 30 31 BOOL IsBuiltinLayer(PCWSTR Name); 32 33 #include "resource.h" 34 #include "CLayerStringList.hpp" 35 #include "CLayerUIPropPage.hpp" 36 37 BOOL ShowEditCompatModes(HWND hWnd, CLayerUIPropPage* page); 38 39 #endif /* ACPPAGE_PRECOMP_H */ 40