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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/*
* IUpdateSearcher implementation
*
* Copyright 2008 Hans Leidekker
*
* 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
*/
#define COBJMACROS
#include "config.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "wuapi.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(wuapi);
typedef struct _update_searcher
{
IUpdateSearcher IUpdateSearcher_iface;
LONG refs;
} update_searcher;
static inline update_searcher *impl_from_IUpdateSearcher( IUpdateSearcher *iface )
{
return CONTAINING_RECORD(iface, update_searcher, IUpdateSearcher_iface);
}
static ULONG WINAPI update_searcher_AddRef(
IUpdateSearcher *iface )
{
update_searcher *update_searcher = impl_from_IUpdateSearcher( iface );
return InterlockedIncrement( &update_searcher->refs );
}
static ULONG WINAPI update_searcher_Release(
IUpdateSearcher *iface )
{
update_searcher *update_searcher = impl_from_IUpdateSearcher( iface );
LONG refs = InterlockedDecrement( &update_searcher->refs );
if (!refs)
{
TRACE("destroying %p\n", update_searcher);
HeapFree( GetProcessHeap(), 0, update_searcher );
}
return refs;
}
static HRESULT WINAPI update_searcher_QueryInterface(
IUpdateSearcher *iface,
REFIID riid,
void **ppvObject )
{
update_searcher *This = impl_from_IUpdateSearcher( iface );
TRACE("%p %s %p\n", This, debugstr_guid( riid ), ppvObject );
if ( IsEqualGUID( riid, &IID_IUpdateSearcher ) ||
IsEqualGUID( riid, &IID_IDispatch ) ||
IsEqualGUID( riid, &IID_IUnknown ) )
{
*ppvObject = iface;
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
IUpdateSearcher_AddRef( iface );
return S_OK;
}
static HRESULT WINAPI update_searcher_GetTypeInfoCount(
IUpdateSearcher *iface,
UINT *pctinfo )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_GetTypeInfo(
IUpdateSearcher *iface,
UINT iTInfo,
LCID lcid,
ITypeInfo **ppTInfo )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_GetIDsOfNames(
IUpdateSearcher *iface,
REFIID riid,
LPOLESTR *rgszNames,
UINT cNames,
LCID lcid,
DISPID *rgDispId )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_Invoke(
IUpdateSearcher *iface,
DISPID dispIdMember,
REFIID riid,
LCID lcid,
WORD wFlags,
DISPPARAMS *pDispParams,
VARIANT *pVarResult,
EXCEPINFO *pExcepInfo,
UINT *puArgErr )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_get_CanAutomaticallyUpgradeService(
IUpdateSearcher *This,
VARIANT_BOOL *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_put_CanAutomaticallyUpgradeService(
IUpdateSearcher *This,
VARIANT_BOOL value )
{
FIXME("%p, %d\n", This, value);
return S_OK;
}
static HRESULT WINAPI update_searcher_get_ClientApplicationID(
IUpdateSearcher *This,
BSTR *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_put_ClientApplicationID(
IUpdateSearcher *This,
BSTR value )
{
FIXME("%p, %s\n", This, debugstr_w(value));
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_get_IncludePotentiallySupersededUpdates(
IUpdateSearcher *This,
VARIANT_BOOL *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_put_IncludePotentiallySupersededUpdates(
IUpdateSearcher *This,
VARIANT_BOOL value )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_get_ServerSelection(
IUpdateSearcher *This,
ServerSelection *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_put_ServerSelection(
IUpdateSearcher *This,
ServerSelection value )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_BeginSearch(
IUpdateSearcher *This,
BSTR criteria,
IUnknown *onCompleted,
VARIANT state,
ISearchJob **retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_EndSearch(
IUpdateSearcher *This,
ISearchJob *searchJob,
ISearchResult **retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_EscapeString(
IUpdateSearcher *This,
BSTR unescaped,
BSTR *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_QueryHistory(
IUpdateSearcher *This,
LONG startIndex,
LONG count,
IUpdateHistoryEntryCollection **retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_Search(
IUpdateSearcher *This,
BSTR criteria,
ISearchResult **retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_get_Online(
IUpdateSearcher *This,
VARIANT_BOOL *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_put_Online(
IUpdateSearcher *This,
VARIANT_BOOL value )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_GetTotalHistoryCount(
IUpdateSearcher *This,
LONG *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_get_ServiceID(
IUpdateSearcher *This,
BSTR *retval )
{
FIXME("\n");
return E_NOTIMPL;
}
static HRESULT WINAPI update_searcher_put_ServiceID(
IUpdateSearcher *This,
BSTR value )
{
FIXME("\n");
return E_NOTIMPL;
}
static const struct IUpdateSearcherVtbl update_searcher_vtbl =
{
update_searcher_QueryInterface,
update_searcher_AddRef,
update_searcher_Release,
update_searcher_GetTypeInfoCount,
update_searcher_GetTypeInfo,
update_searcher_GetIDsOfNames,
update_searcher_Invoke,
update_searcher_get_CanAutomaticallyUpgradeService,
update_searcher_put_CanAutomaticallyUpgradeService,
update_searcher_get_ClientApplicationID,
update_searcher_put_ClientApplicationID,
update_searcher_get_IncludePotentiallySupersededUpdates,
update_searcher_put_IncludePotentiallySupersededUpdates,
update_searcher_get_ServerSelection,
update_searcher_put_ServerSelection,
update_searcher_BeginSearch,
update_searcher_EndSearch,
update_searcher_EscapeString,
update_searcher_QueryHistory,
update_searcher_Search,
update_searcher_get_Online,
update_searcher_put_Online,
update_searcher_GetTotalHistoryCount,
update_searcher_get_ServiceID,
update_searcher_put_ServiceID
};
HRESULT UpdateSearcher_create( IUnknown *pUnkOuter, LPVOID *ppObj )
{
update_searcher *searcher;
TRACE("(%p,%p)\n", pUnkOuter, ppObj);
searcher = HeapAlloc( GetProcessHeap(), 0, sizeof(*searcher) );
if (!searcher) return E_OUTOFMEMORY;
searcher->IUpdateSearcher_iface.lpVtbl = &update_searcher_vtbl;
searcher->refs = 1;
*ppObj = &searcher->IUpdateSearcher_iface;
TRACE("returning iface %p\n", *ppObj);
return S_OK;
}