reactos/dll/win32/shell32/precomp.h
David Quintana fd029c9779 [RSHELL]
[SHELL32]
[BROWSEUI]
* Move undocshell.h to a shared location, and move some shared utility functions into it.
* Replace all the COM object constructor functions with generic equivalents.
* Fixes a big bunch of "problems" found by Coverity Scan, but I don't have the list of CID at the moment.

svn path=/branches/shell-experiments/; revision=64854
2014-10-20 21:09:55 +00:00

83 lines
1.9 KiB
C

#ifndef _PRECOMP_H__
#define _PRECOMP_H__
#include <stdarg.h>
#include <assert.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 <winreg.h>
#include <winuser.h>
#include <wincon.h>
#include <commdlg.h>
#include <ddeml.h>
#include <shlguid_undoc.h>
#include <shlwapi.h>
#include <shlobj.h>
#include <shlobj_undoc.h>
#include <shlwapi_undoc.h>
#include <recyclebin.h>
#include <ndk/rtlfuncs.h>
#include <fmifs/fmifs.h>
#include <tchar.h>
#include <strsafe.h>
#include <atlbase.h>
#include <atlcom.h>
#include <powrprof.h>
#include <undocshell.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 "shellfolder.h"
#include "shellitem.h"
#include "shelllink.h"
#include "dragdrophelper.h"
#include "autocomplete.h"
#include "folders/fs.h"
#include "folders/mycomp.h"
#include "folders/desktop.h"
#include "folders/cpanel.h"
#include "folders/mydocuments.h"
#include "folders/netplaces.h"
#include "folders/fonts.h"
#include "folders/printers.h"
#include "folders/admintools.h"
#include "folders/recyclebin.h"
#include "droptargets/CexeDropHandler.h"
#include "openwithmenu.h"
#include "newmenu.h"
#include "startmenu.h"
#include "filedefext.h"
#include "drvdefext.h"
#include "CMenuBand.h"
#include "CMenuDeskBar.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 /* _PRECOMP_H__ */