mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 12:23:41 +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.
10 lines
315 B
CMake
10 lines
315 B
CMake
|
|
list(APPEND SOURCE
|
|
CertEnumSystemStoreLocation.c
|
|
testlist.c)
|
|
|
|
add_executable(crypt32_apitest ${SOURCE})
|
|
target_link_libraries(crypt32_apitest wine ${PSEH_LIB})
|
|
set_module_type(crypt32_apitest win32cui)
|
|
add_importlibs(crypt32_apitest crypt32 msvcrt kernel32 ntdll)
|
|
add_rostests_file(TARGET crypt32_apitest)
|