- Better handling when settimeofday is not available.
[wine] / include / wine / obj_shellextinit.h
1 /*
2  *    IShellExtInit
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_SHELLEXTINIT_H
22 #define __WINE_WINE_OBJ_SHELLEXTINIT_H
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif /* defined(__cplusplus) */
27
28 typedef struct  IShellExtInit IShellExtInit, *LPSHELLEXTINIT;
29
30 #define ICOM_INTERFACE IShellExtInit
31 #define IShellExtInit_METHODS \
32         ICOM_METHOD3(HRESULT, Initialize, LPCITEMIDLIST, pidlFolder, LPDATAOBJECT, lpdobj, HKEY, hkeyProgID)
33 #define IShellExtInit_IMETHODS \
34         IUnknown_IMETHODS \
35         IShellExtInit_METHODS
36 ICOM_DEFINE(IShellExtInit,IUnknown)
37 #undef ICOM_INTERFACE
38
39 /*** IUnknown methods ***/
40 #define IShellExtInit_QueryInterface(p,a,b)     ICOM_CALL2(QueryInterface,p,a,b)
41 #define IShellExtInit_AddRef(p)                 ICOM_CALL(AddRef,p)
42 #define IShellExtInit_Release(p)                ICOM_CALL(Release,p)
43 /*** IShellExtInit methods ***/
44 #define IShellExtInit_Initialize(p,a,b,c)       ICOM_CALL3(Initialize,p,a,b,c)
45
46 #ifdef __cplusplus
47 } /* extern "C" */
48 #endif /* defined(__cplusplus) */
49
50 #endif /* __WINE_WINE_OBJ_SHELLEXTINIT_H */