Documentation standardizations.
[wine] / dlls / shell32 / if_macros.h
1 #ifndef _WINE_IFMACROS_
2 #define _WINE_IFMACROS_
3
4 #include "shlobj.h"
5
6 #define IShellBrowser_QueryInterface(p,a,b)     (p)->lpvtbl->fnQueryInterface(p,a,b)
7 #define IShellBrowser_AddRef(p)                 (p)->lpvtbl->fnAddRef(p)
8 #define IShellBrowser_Release(p)                (p)->lpvtbl->fnRelease(p)
9 #define IShellBrowser_GetWindow(p,a)            (p)->lpvtbl->fnGetWindow(p,a)
10 #define IShellBrowser_ContextSensitiveHelp(p,a) (p)->lpvtbl->fnContextSensitiveHelp(p,a)
11 #define IShellBrowser_InsertMenusSB(p,a,b)      (p)->lpvtbl->fnInsertMenusSB(p,a,b)
12 #define IShellBrowser_SetMenuSB(p,a,b,c)        (p)->lpvtbl->fnSetMenuSB(p,a,b,c)
13 #define IShellBrowser_RemoveMenusSB(p,a)        (p)->lpvtbl->fnRemoveMenusSB(p,a)
14 #define IShellBrowser_SetStatusTextSB(p,a)      (p)->lpvtbl->fnSetStatusTextSB(p,a)
15 #define IShellBrowser_EnableModelessSB(p,a)     (p)->lpvtbl->fnEnableModelessSB(p,a)
16 #define IShellBrowser_TranslateAcceleratorSB(p,a,b)     (p)->lpvtbl->fnTranslateAcceleratorSB(p,a,b)
17 #define IShellBrowser_BrowseObject(p,a,b)       (p)->lpvtbl->fnBrowseObject(p,a,b)
18 #define IShellBrowser_GetViewStateStream(p,a,b) (p)->lpvtbl->fnGetViewStateStream(p,a,b)
19 #define IShellBrowser_GetControlWindow(p,a,b)   (p)->lpvtbl->fnGetControlWindow(p,a,b)
20 #define IShellBrowser_SendControlMsg(p,a,b,c,d,e)       (p)->lpvtbl->fnSendControlMsg(p,a,b,c,d,e)
21 #define IShellBrowser_QueryActiveShellView(p,a) (p)->lpvtbl->fnQueryActiveShellView(p,a)
22 #define IShellBrowser_OnViewWindowActive(p,a)   (p)->lpvtbl->fnOnViewWindowActive(p,a)
23 #define IShellBrowser_SetToolbarItems(p,a,b,c)  (p)->lpvtbl->fnSetToolbarItems(p,a,b,c)
24
25 #endif