mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 20:14:05 +00:00

Initial implementation of `CertEnumSystemStoreLocation`, which is required by the latest "VirtualBox Guest Additions". This function returns 8 fixed hard-coded system stores and registered OID system stores, this PR didn't implement the latter because `CryptEnumOIDFunction` is unimplemented, marked as FIXME.
13 lines
250 B
C
13 lines
250 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_CertEnumSystemStoreLocation(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "CertEnumSystemStoreLocation", func_CertEnumSystemStoreLocation },
|
|
|
|
{ 0, 0 }
|
|
};
|