2016-04-09 21:40:32 +00:00
|
|
|
#ifndef ACPPAGE_PRECOMP_H
|
|
|
|
#define ACPPAGE_PRECOMP_H
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#define NTOS_MODE_USER
|
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <shlobj.h>
|
2017-04-22 17:11:52 +00:00
|
|
|
#include <tchar.h>
|
|
|
|
#include <strsafe.h>
|
2016-04-09 21:40:32 +00:00
|
|
|
#include <atlbase.h>
|
|
|
|
#include <atlcom.h>
|
2017-04-22 17:11:52 +00:00
|
|
|
#include <atlsimpcoll.h>
|
|
|
|
#include <atlstr.h>
|
2017-10-23 15:56:57 +00:00
|
|
|
#include <atlwin.h>
|
|
|
|
#include <rosdlgs.h>
|
2016-08-23 19:37:31 +00:00
|
|
|
|
2016-04-09 21:40:32 +00:00
|
|
|
ULONG DbgPrint(PCH Format,...);
|
2017-04-22 17:11:52 +00:00
|
|
|
#include <apphelp.h>
|
2016-04-09 21:40:32 +00:00
|
|
|
|
|
|
|
extern const GUID CLSID_CLayerUIPropPage;
|
|
|
|
extern HMODULE g_hModule;
|
|
|
|
extern LONG g_ModuleRefCnt;
|
|
|
|
|
|
|
|
EXTERN_C BOOL WINAPI GetExeFromLnk(PCWSTR pszLnk, PWSTR pszExe, size_t cchSize);
|
|
|
|
|
2018-01-27 16:41:58 +00:00
|
|
|
BOOL IsBuiltinLayer(PCWSTR Name);
|
|
|
|
|
2016-04-09 21:40:32 +00:00
|
|
|
#include "resource.h"
|
2017-04-22 17:11:52 +00:00
|
|
|
#include "CLayerStringList.hpp"
|
2016-04-09 21:40:32 +00:00
|
|
|
#include "CLayerUIPropPage.hpp"
|
|
|
|
|
2019-03-17 12:31:31 +00:00
|
|
|
BOOL ShowEditCompatModes(HWND hWnd, CLayerUIPropPage* page);
|
|
|
|
|
2016-04-09 21:40:32 +00:00
|
|
|
#endif /* ACPPAGE_PRECOMP_H */
|