I've been trying to use the AuthGG native C++ example, and when i try to call the UrlDownloadToFileA function, i keep getting unresolved external symbols. The example uses cryptopp library, etc.
Code:
#include <urlmon.h>
#pragma comment(lib, "urlmon.lib")
my linker input options: urlmon.lib
UrlDownloadToFileA(0, "https://localhost/test.txt","C:\\test.txt",0,0);
Thanks guys :)