Added version information.
[wine.git] / include / wine / obj_shellextinit.h
blob1c2b0b0e2cf48954338488f02b8e66e825055d3c
1 /*
2 * IShellExtInit
4 * Copyright (C) 1999 Juergen Schmied
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.
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.
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
21 #ifndef __WINE_WINE_OBJ_SHELLEXTINIT_H
22 #define __WINE_WINE_OBJ_SHELLEXTINIT_H
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* defined(__cplusplus) */
28 typedef struct IShellExtInit IShellExtInit, *LPSHELLEXTINIT;
30 #define INTERFACE IShellExtInit
31 #define IShellExtInit_METHODS \
32 IUnknown_METHODS \
33 STDMETHOD(Initialize)(THIS_ LPCITEMIDLIST pidlFolder, LPDATAOBJECT lpdobj, HKEY hkeyProgID) PURE;
34 ICOM_DEFINE(IShellExtInit,IUnknown)
35 #undef INTERFACE
37 #ifdef COBJMACROS
38 /*** IUnknown methods ***/
39 #define IShellExtInit_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
40 #define IShellExtInit_AddRef(p) (p)->lpVtbl->AddRef(p)
41 #define IShellExtInit_Release(p) (p)->lpVtbl->Release(p)
42 /*** IShellExtInit methods ***/
43 #define IShellExtInit_Initialize(p,a,b,c) (p)->lpVtbl->Initialize(p,a,b,c)
44 #endif
46 #ifdef __cplusplus
47 } /* extern "C" */
48 #endif /* defined(__cplusplus) */
50 #endif /* __WINE_WINE_OBJ_SHELLEXTINIT_H */