mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 06:09:58 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
79 lines
1.8 KiB
C
79 lines
1.8 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 "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 "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__ */
|