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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/*
* Protected Storage (pstores)
*
* Copyright 2004 Mike McCormack for CodeWeavers
*
* 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 <stdarg.h>
#define COBJMACROS
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "pstore.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(pstores);
typedef struct
{
const IPStoreVtbl *lpVtbl;
LONG ref;
} PStore_impl;
BOOL WINAPI DllMain(HINSTANCE hinst, DWORD fdwReason, LPVOID fImpLoad)
{
TRACE("%p %x %p\n", hinst, fdwReason, fImpLoad);
switch (fdwReason)
{
case DLL_WINE_PREATTACH:
return FALSE; /* prefer native version */
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hinst);
break;
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
/**************************************************************************
* IPStore->QueryInterface
*/
static HRESULT WINAPI PStore_fnQueryInterface(
IPStore* iface,
REFIID riid,
LPVOID *ppvObj)
{
PStore_impl *This = (PStore_impl *)iface;
TRACE("%p %s\n",This,debugstr_guid(riid));
*ppvObj = NULL;
if (IsEqualIID(riid, &IID_IUnknown))
{
*ppvObj = This;
}
if (*ppvObj)
{
IUnknown_AddRef((IUnknown*)(*ppvObj));
return S_OK;
}
TRACE("-- Interface: E_NOINTERFACE\n");
return E_NOINTERFACE;
}
/******************************************************************************
* IPStore->AddRef
*/
static ULONG WINAPI PStore_fnAddRef(IPStore* iface)
{
PStore_impl *This = (PStore_impl *)iface;
TRACE("%p %u\n", This, This->ref);
return InterlockedIncrement( &This->ref );
}
/******************************************************************************
* IPStore->Release
*/
static ULONG WINAPI PStore_fnRelease(IPStore* iface)
{
PStore_impl *This = (PStore_impl *)iface;
LONG ref;
TRACE("%p %u\n", This, This->ref);
ref = InterlockedDecrement( &This->ref );
if( !ref )
HeapFree( GetProcessHeap(), 0, This );
return ref;
}
/******************************************************************************
* IPStore->GetInfo
*/
static HRESULT WINAPI PStore_fnGetInfo( IPStore* iface, PPST_PROVIDERINFO* ppProperties)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->GetProvParam
*/
static HRESULT WINAPI PStore_fnGetProvParam( IPStore* iface,
DWORD dwParam, DWORD* pcbData, BYTE** ppbData, DWORD dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->SetProvParam
*/
static HRESULT WINAPI PStore_fnSetProvParam( IPStore* This,
DWORD dwParam, DWORD cbData, BYTE* pbData, DWORD* dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->CreateType
*/
static HRESULT WINAPI PStore_fnCreateType( IPStore* This,
PST_KEY Key, const GUID* pType, PPST_TYPEINFO pInfo, DWORD dwFlags)
{
FIXME("%p %08x %s %p(%d,%s) %08x\n", This, Key, debugstr_guid(pType),
pInfo, pInfo->cbSize, debugstr_w(pInfo->szDisplayName), dwFlags);
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->GetTypeInfo
*/
static HRESULT WINAPI PStore_fnGetTypeInfo( IPStore* This,
PST_KEY Key, const GUID* pType, PPST_TYPEINFO** ppInfo, DWORD dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->DeleteType
*/
static HRESULT WINAPI PStore_fnDeleteType( IPStore* This,
PST_KEY Key, const GUID* pType, DWORD dwFlags)
{
FIXME("%p %d %s %08x\n", This, Key, debugstr_guid(pType), dwFlags);
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->CreateSubtype
*/
static HRESULT WINAPI PStore_fnCreateSubtype( IPStore* This,
PST_KEY Key, const GUID* pType, const GUID* pSubtype,
PPST_TYPEINFO pInfo, PPST_ACCESSRULESET pRules, DWORD dwFlags)
{
FIXME("%p %08x %s %s %p %p %08x\n", This, Key, debugstr_guid(pType),
debugstr_guid(pSubtype), pInfo, pRules, dwFlags);
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->GetSubtypeInfo
*/
static HRESULT WINAPI PStore_fnGetSubtypeInfo( IPStore* This,
PST_KEY Key, const GUID* pType, const GUID* pSubtype,
PPST_TYPEINFO** ppInfo, DWORD dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->DeleteSubtype
*/
static HRESULT WINAPI PStore_fnDeleteSubtype( IPStore* This,
PST_KEY Key, const GUID* pType, const GUID* pSubtype, DWORD dwFlags)
{
FIXME("%p %u %s %s %08x\n", This, Key,
debugstr_guid(pType), debugstr_guid(pSubtype), dwFlags);
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->ReadAccessRuleset
*/
static HRESULT WINAPI PStore_fnReadAccessRuleset( IPStore* This,
PST_KEY Key, const GUID* pType, const GUID* pSubtype, PPST_TYPEINFO pInfo,
PPST_ACCESSRULESET** ppRules, DWORD dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->WriteAccessRuleSet
*/
static HRESULT WINAPI PStore_fnWriteAccessRuleset( IPStore* This,
PST_KEY Key, const GUID* pType, const GUID* pSubtype,
PPST_TYPEINFO pInfo, PPST_ACCESSRULESET pRules, DWORD dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->EnumTypes
*/
static HRESULT WINAPI PStore_fnEnumTypes( IPStore* This, PST_KEY Key,
DWORD dwFlags, IEnumPStoreTypes** ppenum)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->EnumSubtypes
*/
static HRESULT WINAPI PStore_fnEnumSubtypes( IPStore* This, PST_KEY Key,
const GUID* pType, DWORD dwFlags, IEnumPStoreTypes** ppenum)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->DeleteItem
*/
static HRESULT WINAPI PStore_fnDeleteItem( IPStore* This, PST_KEY Key,
const GUID* pItemType, const GUID* pItemSubType, LPCWSTR szItemName,
PPST_PROMPTINFO pPromptInfo, DWORD dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->ReadItem
*/
static HRESULT WINAPI PStore_fnReadItem( IPStore* This, PST_KEY Key,
const GUID* pItemType, const GUID* pItemSubtype, LPCWSTR szItemName,
DWORD *cbData, BYTE** pbData, PPST_PROMPTIFO pPromptInfo, DWORD dwFlags)
{
FIXME("%p %08x %s %s %s %p %p %p %08x\n", This, Key,
debugstr_guid(pItemType), debugstr_guid(pItemSubtype),
debugstr_w(szItemName), cbData, pbData, pPromptInfo, dwFlags);
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->WriteItem
*/
static HRESULT WINAPI PStore_fnWriteItem( IPStore* This, PST_KEY Key,
const GUID* pItemType, const GUID* pItemSubtype, LPCWSTR szItemName,
DWORD cbData, BYTE* ppbData, PPST_PROMPTIFO pPromptInfo,
DWORD dwDefaultConfirmationStyle, DWORD dwFlags)
{
FIXME("%p %08x %s %s %s %d %p %p %08x\n", This, Key,
debugstr_guid(pItemType), debugstr_guid(pItemSubtype),
debugstr_w(szItemName), cbData, ppbData, pPromptInfo, dwFlags);
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->OpenItem
*/
static HRESULT WINAPI PStore_fnOpenItem( IPStore* This, PST_KEY Key,
const GUID* pItemType, const GUID* pItemSubtype, LPCWSTR szItemName,
PST_ACCESSMODE ModeFlags, PPST_PROMPTIFO pProomptInfo, DWORD dwFlags )
{
FIXME("%p %08x %s %s %p %08x %p %08x\n", This, Key,
debugstr_guid(pItemType), debugstr_guid(pItemSubtype),
debugstr_w(szItemName), ModeFlags, pProomptInfo, dwFlags);
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->CloseItem
*/
static HRESULT WINAPI PStore_fnCloseItem( IPStore* This, PST_KEY Key,
const GUID* pItemType, const GUID* pItemSubtype, LPCWSTR* szItemName,
DWORD dwFlags)
{
FIXME("\n");
return E_NOTIMPL;
}
/******************************************************************************
* IPStore->EnumItems
*/
static HRESULT WINAPI PStore_fnEnumItems( IPStore* This, PST_KEY Key,
const GUID* pItemType, const GUID* pItemSubtype, DWORD dwFlags,
IEnumPStoreItems** ppenum)
{
FIXME("\n");
return E_NOTIMPL;
}
static const IPStoreVtbl pstores_vtbl =
{
PStore_fnQueryInterface,
PStore_fnAddRef,
PStore_fnRelease,
PStore_fnGetInfo,
PStore_fnGetProvParam,
PStore_fnSetProvParam,
PStore_fnCreateType,
PStore_fnGetTypeInfo,
PStore_fnDeleteType,
PStore_fnCreateSubtype,
PStore_fnGetSubtypeInfo,
PStore_fnDeleteSubtype,
PStore_fnReadAccessRuleset,
PStore_fnWriteAccessRuleset,
PStore_fnEnumTypes,
PStore_fnEnumSubtypes,
PStore_fnDeleteItem,
PStore_fnReadItem,
PStore_fnWriteItem,
PStore_fnOpenItem,
PStore_fnCloseItem,
PStore_fnEnumItems
};
HRESULT WINAPI PStoreCreateInstance( IPStore** ppProvider,
PST_PROVIDERID* pProviderID, void* pReserved, DWORD dwFlags)
{
PStore_impl *ips;
TRACE("%p %s %p %08x\n", ppProvider, debugstr_guid(pProviderID), pReserved, dwFlags);
ips = HeapAlloc( GetProcessHeap(), 0, sizeof (PStore_impl) );
if( !ips )
return E_OUTOFMEMORY;
ips->lpVtbl = &pstores_vtbl;
ips->ref = 1;
*ppProvider = (IPStore*) ips;
return S_OK;
}
HRESULT WINAPI DllRegisterServer(void)
{
FIXME("\n");
return S_OK;
}
HRESULT WINAPI DllUnregisterServer(void)
{
FIXME("\n");
return S_OK;
}
/***********************************************************************
* DllGetClassObject (PSTOREC.@)
*/
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
{
FIXME("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
return CLASS_E_CLASSNOTAVAILABLE;
}
HRESULT WINAPI DllCanUnloadNow(void)
{
FIXME("\n");
return S_OK;
}