mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
40 lines
846 B
C
40 lines
846 B
C
#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>
|
|
#include <tchar.h>
|
|
#include <strsafe.h>
|
|
#include <atlbase.h>
|
|
#include <atlcom.h>
|
|
#include <atlsimpcoll.h>
|
|
#include <atlstr.h>
|
|
#include <atlwin.h>
|
|
#include <ui/rosdlgs.h>
|
|
|
|
ULONG DbgPrint(PCH Format,...);
|
|
#include <apphelp.h>
|
|
|
|
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);
|
|
|
|
BOOL IsBuiltinLayer(PCWSTR Name);
|
|
|
|
#include "resource.h"
|
|
#include "CLayerStringList.hpp"
|
|
#include "CLayerUIPropPage.hpp"
|
|
|
|
BOOL ShowEditCompatModes(HWND hWnd, CLayerUIPropPage* page);
|
|
|
|
#endif /* ACPPAGE_PRECOMP_H */
|