-1

未解决的外部符号 __imp_CertFindChainInStore 编译错误

似乎如果我包含 CertFindChainInStore 我的程序将无法编译 https://docs.microsoft.com/en-us/windows/win32/api/wincrypt/nf-wincrypt-certfindchaininstore

4

1 回答 1

0

您需要链接 Crypt32.lib 来解决该功能

在你的 cpp 文件开始时添加这个

 #pragma comment ( lib, "Crypt32.lib" )
于 2020-04-25T21:58:02.840 回答