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
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)
39 if (!pPStoreCreateInstance
)
41 win_skip("PStoreCreateInstance is not available\n");
45 hr
= pPStoreCreateInstance(&store
, NULL
, NULL
, 0);
48 /* this function does not work starting with Win8 */
49 win_skip("PStoreCreateInstance is not implemented on this system\n");
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
);
67 HMODULE module
= LoadLibraryA("pstorec");
69 pPStoreCreateInstance
= (void *)GetProcAddress(module
, "PStoreCreateInstance");
71 test_PStoreCreateInstance();