gphoto2.ds: Set supported groups.
[wine.git] / dlls / pstorec / tests / pstorec.c
blobbc30b193d72be8a4c78329d1c9889128999c3371
1 /*
2 * Protected Storage Tests
4 * Copyright 2017 Nikolay Sivov
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.
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.
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
21 #include <stdarg.h>
23 #define COBJMACROS
24 #include "windef.h"
25 #include "initguid.h"
26 #include "ole2.h"
27 #include "pstore.h"
29 #include "wine/test.h"
31 static HRESULT (WINAPI *pPStoreCreateInstance)(IPStore **store, PST_PROVIDERID *id, void *reserved, DWORD flags);
33 static void test_PStoreCreateInstance(void)
35 IPStore *store;
36 IUnknown *unk;
37 HRESULT hr;
39 if (!pPStoreCreateInstance)
41 win_skip("PStoreCreateInstance is not available\n");
42 return;
45 hr = pPStoreCreateInstance(&store, NULL, NULL, 0);
46 if (hr == E_NOTIMPL)
48 /* this function does not work starting with Win8 */
49 win_skip("PStoreCreateInstance is not implemented on this system\n");
50 return;
52 ok(hr == S_OK, "Unexpected return value %#x.\n", hr);
54 hr = IPStore_QueryInterface(store, &IID_IUnknown, (void **)&unk);
55 ok(hr == S_OK, "Unexpected return value %#x.\n", hr);
56 IUnknown_Release(unk);
58 hr = IPStore_QueryInterface(store, &IID_IPStore, (void **)&unk);
59 ok(hr == S_OK, "Unexpected return value %#x.\n", hr);
60 IUnknown_Release(unk);
62 IPStore_Release(store);
65 START_TEST(pstorec)
67 HMODULE module = LoadLibraryA("pstorec");
69 pPStoreCreateInstance = (void *)GetProcAddress(module, "PStoreCreateInstance");
71 test_PStoreCreateInstance();