2008-08-26 15:50:23 +00:00
|
|
|
#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>
|
[browseui, shell32, explorer_new, include]
- Convert browseui to C++/ATL. As part of this, classes in browseui and now registered with .rgs files.
- Add AddressBand, AddressEditBox, BandProxy, BaseBar, BaseBarSite, BrandBand, InternetToolbar, ShellBrowser, ToolsBand, and TravelLog.
- Add stub implementations of commonbrowser, globalfoldersettings, and regtreeoptions.
- Clean up some msvc compile problems in a few files.
- Reorganize some headers to make them better match the Platform SDK.
- Move InlineIsEqualGUID to guiddef.h.
- Create new header files shlguid_undoc.h, shlobj_undoc.h, and shlwapi_undoc.h to hold undocumented types, functions, and GUIDs.
- Move some undocumented definitions declared in explorer_new/todo.h and undoc.h to new headers.
- Rename a few interfaces in explorer_new to the correct name
- Add definition of RBSTR_CHANGERECT to commctrl.h
- IDeskBarClient inherits from IOleWindow, not IUnknown
- HMONITOR was declared in both dxsdk/axextend.idl and wine/wined3d.idl, but not in wtypes.idl where it belongs
- Added Init and Term to CComModule
- Thanks to encoded for solving the browseui linking problem!
svn path=/trunk/; revision=43872
2009-10-31 14:25:45 +00:00
|
|
|
#include <shlguid_undoc.h>
|
2008-08-26 15:50:23 +00:00
|
|
|
#include <shlwapi.h>
|
|
|
|
#include <shlobj.h>
|
[browseui, shell32, explorer_new, include]
- Convert browseui to C++/ATL. As part of this, classes in browseui and now registered with .rgs files.
- Add AddressBand, AddressEditBox, BandProxy, BaseBar, BaseBarSite, BrandBand, InternetToolbar, ShellBrowser, ToolsBand, and TravelLog.
- Add stub implementations of commonbrowser, globalfoldersettings, and regtreeoptions.
- Clean up some msvc compile problems in a few files.
- Reorganize some headers to make them better match the Platform SDK.
- Move InlineIsEqualGUID to guiddef.h.
- Create new header files shlguid_undoc.h, shlobj_undoc.h, and shlwapi_undoc.h to hold undocumented types, functions, and GUIDs.
- Move some undocumented definitions declared in explorer_new/todo.h and undoc.h to new headers.
- Rename a few interfaces in explorer_new to the correct name
- Add definition of RBSTR_CHANGERECT to commctrl.h
- IDeskBarClient inherits from IOleWindow, not IUnknown
- HMONITOR was declared in both dxsdk/axextend.idl and wine/wined3d.idl, but not in wtypes.idl where it belongs
- Added Init and Term to CComModule
- Thanks to encoded for solving the browseui linking problem!
svn path=/trunk/; revision=43872
2009-10-31 14:25:45 +00:00
|
|
|
#include <shlobj_undoc.h>
|
2008-08-26 15:50:23 +00:00
|
|
|
#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>
|
2008-08-26 22:35:44 +00:00
|
|
|
#include <largeint.h>
|
2009-02-02 23:06:33 +00:00
|
|
|
#include <sddl.h>
|
2008-08-26 15:50:23 +00:00
|
|
|
|
|
|
|
#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"
|
2009-09-18 00:48:47 +00:00
|
|
|
#include "shellapi.h"
|
2008-08-26 15:50:23 +00:00
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
|
|
|
|
extern const GUID CLSID_AdminFolderShortcut;
|
|
|
|
extern const GUID CLSID_FontsFolderShortcut;
|
|
|
|
extern const GUID CLSID_StartMenu;
|
2009-09-22 18:30:39 +00:00
|
|
|
extern const GUID CLSID_MenuBandSite;
|
2008-08-26 15:50:23 +00:00
|
|
|
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
|