Add GetSystemWindowsDirectory, GetCurrentHwProfile.
[wine] / include / wine / obj_dockingwindowframe.h
1 /*
2  *    IDockingWindowFrame
3  *
4  * Copyright (C) 1999 Juergen Schmied
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #ifndef __WINE_WINE_OBJ_DOCKINGWINDOWFRAME_H
22 #define __WINE_WINE_OBJ_DOCKINGWINDOWFRAME_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* defined(__cplusplus) */
27
28 typedef struct IDockingWindowFrame IDockingWindowFrame, *LPDOCKINGWINDOWFRAME;
29 DEFINE_GUID (IID_IDockingWindowFrame,   0x47D2657AL, 0x7B27, 0x11D0, 0x8C, 0xA9, 0x00, 0xA0, 0xC9, 0x2D, 0xBF, 0xE8);
30
31 #define DWFRF_NORMAL            0x0000  /* femove toolbar flags*/
32 #define DWFRF_DELETECONFIGDATA  0x0001
33 #define DWFAF_HIDDEN            0x0001   /* add tolbar*/
34
35 #define INTERFACE IDockingWindowFrame
36 #define IDockingWindowFrame_METHODS \
37         IOleWindow_METHODS \
38         STDMETHOD(AddToolbar)(THIS_ IUnknown * punkSrc, LPCWSTR  pwszItem, DWORD  dwAddFlags) PURE; \
39         STDMETHOD(RemoveToolbar)(THIS_ IUnknown * punkSrc, DWORD  dwRemoveFlags) PURE; \
40         STDMETHOD(FindToolbar)(THIS_ LPCWSTR  pwszItem, REFIID  riid, LPVOID * ppvObj) PURE;
41 ICOM_DEFINE(IDockingWindowFrame,IOleWindow)
42 #undef INTERFACE
43
44 #ifdef COBJMACROS
45 /*** IUnknown methods ***/
46 #define IDockingWindowFrame_QueryInterface(p,a,b)       (p)->lpVtbl->QueryInterface(p,a,b)
47 #define IDockingWindowFrame_AddRef(p)   (p)->lpVtbl->AddRef(p)
48 #define IDockingWindowFrame_Release(p)  (p)->lpVtbl->Release(p)
49 /*** IDockingWindowFrame methods ***/
50 #define IDockingWindowFrame_GetWindow(p,a)      (p)->lpVtbl->GetWindow(p,a)
51 #define IDockingWindowFrame_ContextSensitiveHelp(p,a)   (p)->lpVtbl->ContextSensitiveHelp(p,a)
52 #define IDockingWindowFrame_AddToolbar(p,a,b,c) (p)->lpVtbl->AddToolbar(p,a,b,c)
53 #define IDockingWindowFrame_RemoveToolbar(p,a,b)        (p)->lpVtbl->RemoveToolbar(p,a,b)
54 #define IDockingWindowFrame_FindToolbar(p,a,b,c)        (p)->lpVtbl->FindToolbar(p,a,b,c)
55 #endif
56
57 #ifdef __cplusplus
58 } /* extern "C" */
59 #endif /* defined(__cplusplus) */
60
61 #endif /* __WINE_WINE_OBJ_DOCKINGWINDOWFRAME_H */