Added/fixed some definitions for direct sound capture.
[wine] / include / servprov.h
1 /*
2  * Copyright (C) 1999 Francois Gouget
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #include "rpc.h"
20 #include "rpcndr.h"
21 #ifndef COM_NO_WINDOWS_H
22 #include "windows.h"
23 #include "ole2.h"
24 #endif
25
26 #ifndef __WINE_SERVPROV_H
27 #define __WINE_SERVPROV_H
28
29
30 #include "objbase.h"
31
32
33 /*****************************************************************************
34  * Predeclare the interfaces
35  */
36 DEFINE_GUID   (IID_IServiceProvider,    0x6d5140c1L, 0x7436, 0x11ce, 0x80, 0x34, 0x00, 0xaa, 0x00, 0x60, 0x09, 0xfa);
37 typedef struct IServiceProvider IServiceProvider,*LPSERVICEPROVIDER;
38
39
40 /*****************************************************************************
41  * IServiceProvider interface
42  */
43 #define ICOM_INTERFACE IServiceProvider
44 #define IServiceProvider_METHODS \
45     ICOM_METHOD3(HRESULT,QueryService, REFGUID,guidService, REFIID,riid, void**,ppvObject)
46 #define IServiceProvider_IMETHODS \
47     IUnknown_IMETHODS \
48     IServiceProvider_METHODS
49 ICOM_DEFINE(IServiceProvider,IUnknown)
50 #undef ICOM_INTERFACE
51
52 /*** IUnknown methods ***/
53 #define IServiceProvider_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
54 #define IServiceProvider_AddRef(p)             ICOM_CALL (AddRef,p)
55 #define IServiceProvider_Release(p)            ICOM_CALL (Release,p)
56 /*** IServiceProvider methods ***/
57 #define IServiceProvider_QueryService(p,a,b,c) ICOM_CALL3(QueryService,p,a,b,c)
58
59
60 #endif /* __WINE_SERVPROV_H */