From 1572d71db62f8595db26c08b83ab0cbc9eee7b2f Mon Sep 17 00:00:00 2001 From: Juergen Schmied Date: Sun, 15 Nov 1998 13:26:25 +0000 Subject: [PATCH] New file, wrapper for IShellBrowser class. --- dlls/shell32/if_macros.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 dlls/shell32/if_macros.h diff --git a/dlls/shell32/if_macros.h b/dlls/shell32/if_macros.h new file mode 100644 index 00000000000..3c299784c88 --- /dev/null +++ b/dlls/shell32/if_macros.h @@ -0,0 +1,25 @@ +#ifndef _WINE_IFMACROS_ +#define _WINE_IFMACROS_ + +#include "shlobj.h" + +#define IShellBrowser_QueryInterface(p,a,b) (p)->lpvtbl->fnQueryInterface(p,a,b) +#define IShellBrowser_AddRef(p) (p)->lpvtbl->fnAddRef(p) +#define IShellBrowser_Release(p) (p)->lpvtbl->fnRelease(p) +#define IShellBrowser_GetWindow(p,a) (p)->lpvtbl->fnGetWindow(p,a) +#define IShellBrowser_ContextSensitiveHelp(p,a) (p)->lpvtbl->fnContextSensitiveHelp(p,a) +#define IShellBrowser_InsertMenusSB(p,a,b) (p)->lpvtbl->fnInsertMenusSB(p,a,b) +#define IShellBrowser_SetMenuSB(p,a,b,c) (p)->lpvtbl->fnSetMenuSB(p,a,b,c) +#define IShellBrowser_RemoveMenusSB(p,a) (p)->lpvtbl->fnRemoveMenusSB(p,a) +#define IShellBrowser_SetStatusTextSB(p,a) (p)->lpvtbl->fnSetStatusTextSB(p,a) +#define IShellBrowser_EnableModelessSB(p,a) (p)->lpvtbl->fnEnableModelessSB(p,a) +#define IShellBrowser_TranslateAcceleratorSB(p,a,b) (p)->lpvtbl->fnTranslateAcceleratorSB(p,a,b) +#define IShellBrowser_BrowseObject(p,a,b) (p)->lpvtbl->fnBrowseObject(p,a,b) +#define IShellBrowser_GetViewStateStream(p,a,b) (p)->lpvtbl->fnGetViewStateStream(p,a,b) +#define IShellBrowser_GetControlWindow(p,a,b) (p)->lpvtbl->fnGetControlWindow(p,a,b) +#define IShellBrowser_SendControlMsg(p,a,b,c,d,e) (p)->lpvtbl->fnSendControlMsg(p,a,b,c,d,e) +#define IShellBrowser_QueryActiveShellView(p,a) (p)->lpvtbl->fnQueryActiveShellView(p,a) +#define IShellBrowser_OnViewWindowActive(p,a) (p)->lpvtbl->fnOnViewWindowActive(p,a) +#define IShellBrowser_SetToolbarItems(p,a,b,c) (p)->lpvtbl->fnSetToolbarItems(p,a,b,c) + +#endif