#include <wininet.h>
int main()
{
auto res = InternetAttemptConnect(0);
return 0;
}
私が得ているエラー(私はcode ::blocksを使用しています):
`InternetAttemptConnect@4'への未定義の参照|
リンカー設定で機能させるには、どのライブラリ(どのファイル)を指定する必要があるかを知っている人はいますか?
#include <wininet.h>
int main()
{
auto res = InternetAttemptConnect(0);
return 0;
}
私が得ているエラー(私はcode ::blocksを使用しています):
`InternetAttemptConnect@4'への未定義の参照|
リンカー設定で機能させるには、どのライブラリ(どのファイル)を指定する必要があるかを知っている人はいますか?