1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
* Copyright 2014 Alistair Leslie-Hughes
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdio.h>
#include <stdarg.h>
#include <assert.h>
#define COBJMACROS
#include "netcfgx.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL( netcfgx );
typedef struct NetConfiguration
{
INetCfg INetCfg_iface;
INetCfgLock INetCfgLock_iface;
LONG ref;
} NetConfiguration;
static inline NetConfiguration *impl_from_INetCfg(INetCfg *iface)
{
return CONTAINING_RECORD(iface, NetConfiguration, INetCfg_iface);
}
static inline NetConfiguration *impl_from_INetCfgLock(INetCfgLock *iface)
{
return CONTAINING_RECORD(iface, NetConfiguration, INetCfgLock_iface);
}
static HRESULT WINAPI netcfg_QueryInterface(INetCfg *iface, REFIID riid, void **ppvObject)
{
NetConfiguration *This = impl_from_INetCfg(iface);
TRACE("%p %s %p\n", This, debugstr_guid(riid), ppvObject);
if (IsEqualGUID(riid, &IID_INetCfg) ||
IsEqualGUID(riid, &IID_IUnknown))
{
*ppvObject = &This->INetCfg_iface;
}
else if(IsEqualGUID(riid, &IID_INetCfgLock))
{
*ppvObject = &This->INetCfgLock_iface;
}
else
{
FIXME("Unsupported interface %s\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
IUnknown_AddRef((IUnknown*)*ppvObject);
return S_OK;
}
static ULONG WINAPI netcfg_AddRef(INetCfg *iface)
{
NetConfiguration *This = impl_from_INetCfg(iface);
ULONG ref = InterlockedIncrement(&This->ref);
TRACE("%p ref=%u\n", This, ref);
return ref;
}
static ULONG WINAPI netcfg_Release(INetCfg *iface)
{
NetConfiguration *This = impl_from_INetCfg(iface);
ULONG ref = InterlockedDecrement(&This->ref);
TRACE("%p ref=%u\n", This, ref);
if (ref == 0)
{
HeapFree(GetProcessHeap(), 0, This);
}
return ref;
}
static HRESULT WINAPI netcfg_Initialize(INetCfg *iface, PVOID pvReserved)
{
NetConfiguration *This = impl_from_INetCfg(iface);
FIXME("%p %p\n", This, pvReserved);
return S_OK;
}
static HRESULT WINAPI netcfg_Uninitialize(INetCfg *iface)
{
NetConfiguration *This = impl_from_INetCfg(iface);
FIXME("%p\n", This);
return S_OK;
}
static HRESULT WINAPI netcfg_Apply(INetCfg *iface)
{
NetConfiguration *This = impl_from_INetCfg(iface);
FIXME("%p\n", This);
return E_NOTIMPL;
}
static HRESULT WINAPI netcfg_Cancel(INetCfg *iface)
{
NetConfiguration *This = impl_from_INetCfg(iface);
FIXME("%p\n", This);
return E_NOTIMPL;
}
static HRESULT WINAPI netcfg_EnumComponents(INetCfg *iface, const GUID *pguidClass, IEnumNetCfgComponent **ppenumComponent)
{
NetConfiguration *This = impl_from_INetCfg(iface);
FIXME("%p %s %p\n", This, debugstr_guid(pguidClass), ppenumComponent);
return E_NOTIMPL;
}
static HRESULT WINAPI netcfg_FindComponent(INetCfg *iface, LPCWSTR pszwInfId, INetCfgComponent **pComponent)
{
NetConfiguration *This = impl_from_INetCfg(iface);
FIXME("%p %s %p\n", This, debugstr_w(pszwInfId), pComponent);
return E_NOTIMPL;
}
static HRESULT WINAPI netcfg_QueryNetCfgClass(INetCfg *iface, const GUID *pguidClass, REFIID riid, void **ppvObject)
{
NetConfiguration *This = impl_from_INetCfg(iface);
FIXME("%p %s %p\n", This, debugstr_guid(pguidClass), ppvObject);
return E_NOTIMPL;
}
static const struct INetCfgVtbl NetCfgVtbl =
{
netcfg_QueryInterface,
netcfg_AddRef,
netcfg_Release,
netcfg_Initialize,
netcfg_Uninitialize,
netcfg_Apply,
netcfg_Cancel,
netcfg_EnumComponents,
netcfg_FindComponent,
netcfg_QueryNetCfgClass
};
static HRESULT WINAPI netcfglock_QueryInterface(INetCfgLock *iface, REFIID riid,void **ppvObject)
{
NetConfiguration *This = impl_from_INetCfgLock(iface);
return netcfg_QueryInterface(&This->INetCfg_iface, riid, ppvObject);
}
static ULONG WINAPI netcfglock_AddRef(INetCfgLock *iface)
{
NetConfiguration *This = impl_from_INetCfgLock(iface);
return netcfg_AddRef(&This->INetCfg_iface);
}
static ULONG WINAPI netcfglock_Release(INetCfgLock *iface)
{
NetConfiguration *This = impl_from_INetCfgLock(iface);
return netcfg_Release(&This->INetCfg_iface);
}
static HRESULT WINAPI netcfglock_AcquireWriteLock(INetCfgLock *iface, DWORD cmsTimeout,
LPCWSTR pszwClientDescription, LPWSTR *ppszwClientDescription)
{
NetConfiguration *This = impl_from_INetCfgLock(iface);
FIXME("%p %d %s %p\n", This, cmsTimeout, debugstr_w(pszwClientDescription), ppszwClientDescription);
return S_OK;
}
static HRESULT WINAPI netcfglock_ReleaseWriteLock(INetCfgLock *iface)
{
NetConfiguration *This = impl_from_INetCfgLock(iface);
FIXME("%p\n", This);
return S_OK;
}
static HRESULT WINAPI netcfglock_IsWriteLocked(INetCfgLock *iface, LPWSTR *ppszwClientDescription)
{
NetConfiguration *This = impl_from_INetCfgLock(iface);
FIXME("%p %p\n", This, ppszwClientDescription);
return E_NOTIMPL;
}
static const struct INetCfgLockVtbl NetCfgLockVtbl =
{
netcfglock_QueryInterface,
netcfglock_AddRef,
netcfglock_Release,
netcfglock_AcquireWriteLock,
netcfglock_ReleaseWriteLock,
netcfglock_IsWriteLocked
};
HRESULT INetCfg_CreateInstance(IUnknown **ppUnk)
{
NetConfiguration *This;
This = HeapAlloc(GetProcessHeap(), 0, sizeof(NetConfiguration));
if (!This)
return E_OUTOFMEMORY;
This->INetCfg_iface.lpVtbl = &NetCfgVtbl;
This->INetCfgLock_iface.lpVtbl = &NetCfgLockVtbl;
This->ref = 1;
*ppUnk = (IUnknown*)&This->INetCfg_iface;
return S_OK;
}