mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 01:00:06 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
81 lines
1.7 KiB
C
81 lines
1.7 KiB
C
#ifndef _PRECOMP_H__
|
|
#define _PRECOMP_H__
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <malloc.h>
|
|
|
|
#define COBJMACROS
|
|
#define NONAMELESSUNION
|
|
#define NONAMELESSSTRUCT
|
|
#define WIN32_NO_STATUS
|
|
#define NTOS_MODE_USER
|
|
#define UNICODE
|
|
#define _UNICODE
|
|
|
|
#include <windows.h>
|
|
|
|
#include <shlguid.h>
|
|
#include <shlguid_undoc.h>
|
|
#include <shlwapi.h>
|
|
#include <shlobj.h>
|
|
#include <shlobj_undoc.h>
|
|
#include <shldisp.h>
|
|
#include <commdlg.h>
|
|
#include <commctrl.h>
|
|
#include <cpl.h>
|
|
#include <objbase.h>
|
|
#include <ole2.h>
|
|
#include <ocidl.h>
|
|
#include <docobj.h>
|
|
#include <prsht.h>
|
|
//#include <initguid.h>
|
|
//#include <devguid.h>
|
|
#include <shobjidl.h>
|
|
#include <shellapi.h>
|
|
#include <msi.h>
|
|
#include <appmgmt.h>
|
|
#include <ntquery.h>
|
|
#include <recyclebin.h>
|
|
#include <shtypes.h>
|
|
#include <ndk/ntndk.h>
|
|
#include <fmifs/fmifs.h>
|
|
#include <largeint.h>
|
|
#include <sddl.h>
|
|
|
|
#include "base/shell/explorer-new/todo.h"
|
|
#include "dlgs.h"
|
|
#include "pidl.h"
|
|
#include "debughlp.h"
|
|
#include "undocshell.h"
|
|
#include "shell32_main.h"
|
|
#include "shresdef.h"
|
|
#include "cpanel.h"
|
|
#include "enumidlist.h"
|
|
#include "shfldr.h"
|
|
#include "version.h"
|
|
#include "shellfolder.h"
|
|
#include "xdg.h"
|
|
#include "shellapi.h"
|
|
|
|
#include "wine/debug.h"
|
|
#include "wine/unicode.h"
|
|
|
|
extern const GUID CLSID_AdminFolderShortcut;
|
|
extern const GUID CLSID_FontsFolderShortcut;
|
|
extern const GUID CLSID_StartMenu;
|
|
extern const GUID CLSID_MenuBandSite;
|
|
extern const GUID CLSID_OpenWith;
|
|
extern const GUID CLSID_UnixFolder;
|
|
extern const GUID CLSID_UnixDosFolder;
|
|
extern const GUID SHELL32_AdvtShortcutProduct;
|
|
extern const GUID SHELL32_AdvtShortcutComponent;
|
|
|
|
|
|
#endif
|