mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:56:26 +00:00
commit SFV_CREATE at w3seek requet
svn path=/trunk/; revision=27042
This commit is contained in:
parent
3246f9583b
commit
6a3725e689
1 changed files with 22 additions and 0 deletions
|
@ -214,6 +214,17 @@ typedef GUID SHELLVIEWID;
|
||||||
* IShellIcon interface
|
* IShellIcon interface
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#undef INTERFACE
|
||||||
|
#define INTERFACE IShellFolderViewCB
|
||||||
|
DECLARE_INTERFACE_(IShellFolderViewCB, IUnknown)
|
||||||
|
{
|
||||||
|
STDMETHOD(QueryInterface) (THIS_ REFIID riid, void **ppv) PURE;
|
||||||
|
STDMETHOD_(ULONG,AddRef) (THIS) PURE;
|
||||||
|
STDMETHOD_(ULONG,Release) (THIS) PURE;
|
||||||
|
STDMETHOD(MessageSFVCB)(THIS_ UINT uMsg, WPARAM wParam, LPARAM lParam) PURE;
|
||||||
|
};
|
||||||
|
#undef INTERFACE
|
||||||
|
|
||||||
#define INTERFACE IShellIcon
|
#define INTERFACE IShellIcon
|
||||||
DECLARE_INTERFACE_(IShellIcon,IUnknown)
|
DECLARE_INTERFACE_(IShellIcon,IUnknown)
|
||||||
{
|
{
|
||||||
|
@ -519,8 +530,19 @@ HRESULT WINAPI SHCreateShellFolderViewEx(LPCSFV pshfvi, IShellView **ppshv);
|
||||||
#define SFVM_GET_WEBVIEW_THEME 86 /* undocumented */
|
#define SFVM_GET_WEBVIEW_THEME 86 /* undocumented */
|
||||||
#define SFVM_GETDEFERREDVIEWSETTINGS 92 /* undocumented */
|
#define SFVM_GETDEFERREDVIEWSETTINGS 92 /* undocumented */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Types and definitions for the SFM_* parameters */
|
/* Types and definitions for the SFM_* parameters */
|
||||||
#include <pshpack8.h>
|
#include <pshpack8.h>
|
||||||
|
typedef struct _SFV_CREATE
|
||||||
|
{
|
||||||
|
UINT cbSize;
|
||||||
|
IShellFolder *pshf;
|
||||||
|
IShellView *psvOuter;
|
||||||
|
IShellFolderViewCB *psfvcb;
|
||||||
|
} SFV_CREATE;
|
||||||
|
|
||||||
|
|
||||||
#define QCMINFO_PLACE_BEFORE 0
|
#define QCMINFO_PLACE_BEFORE 0
|
||||||
#define QCMINFO_PLACE_AFTER 1
|
#define QCMINFO_PLACE_AFTER 1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue