未解析的外部符号 __imp_CertFindChainInStore C++ SCHANNEL
unresolved external symbol __imp_CertFindChainInStore C++ SCHANNEL
未解析的外部符号__imp_CertFindChainInStore编译错误
似乎如果我包含 CertFindChainInStore 我的程序将无法编译
https://docs.microsoft.com/en-us/windows/win32/api/wincrypt/nf-wincrypt-certfindchaininstore
您需要 link Crypt32.lib 来解决该功能
在你的 cpp 文件的开头添加这个
#pragma comment ( lib, "Crypt32.lib" )
未解析的外部符号__imp_CertFindChainInStore编译错误
似乎如果我包含 CertFindChainInStore 我的程序将无法编译 https://docs.microsoft.com/en-us/windows/win32/api/wincrypt/nf-wincrypt-certfindchaininstore
您需要 link Crypt32.lib 来解决该功能
在你的 cpp 文件的开头添加这个
#pragma comment ( lib, "Crypt32.lib" )