msdaps: Add a stub server object.
[wine] / dlls / msdaps / row_server.idl
1 /*
2  * Wine row server interface.
3  *
4  * Copyright (C) 2010 Huw Davies
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 import "oledb.idl";
22
23 [
24     object,
25     uuid(38248178-cf6d-11de-abe5-000c2916d865),
26     pointer_default(unique)
27 ]
28 interface IWineRowServer : IUnknown
29 {
30     [local] HRESULT SetInnerUnk([in] IUnknown *unknown);
31
32     [local] HRESULT GetMarshal([out] IMarshal **marshal);
33 }
34
35 [
36     uuid(38248178-cf6d-11de-abe5-000c2916d865)
37 ]
38 coclass wine_row_server
39 {
40
41 }
42
43 [
44     uuid(38248179-cf6d-11de-abe5-000c2916d865)
45 ]
46 coclass wine_row_proxy
47 {
48
49 }
50
51 [
52     uuid(3824817a-cf6d-11de-abe5-000c2916d865)
53 ]
54 coclass wine_rowset_server
55 {
56
57 }
58
59 [
60     uuid(3824817b-cf6d-11de-abe5-000c2916d865)
61 ]
62 coclass wine_rowset_proxy
63 {
64
65 }
66
67 cpp_quote("extern HRESULT create_row_server( IUnknown*, LPVOID* );")
68 cpp_quote("extern HRESULT create_row_marshal( IUnknown*, LPVOID* );")
69 cpp_quote("extern HRESULT create_rowset_server( IUnknown*, LPVOID* );")
70 cpp_quote("extern HRESULT create_rowset_marshal( IUnknown*, LPVOID* );")