スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
LNK2019: 未解決の外部シンボル __imp__PathFileExistsA@4 が関数 _main で参照されました。<プログラム名> : fatal error LNK1120: 1 件の未解決の外部参照
ソース(バグ有り):
#include "stdafx.h" #include "Windows.h" #include "Shlwapi.h" //c:\temp\test.datの存在を確認 int _tmain(int argc, _TCHAR* argv[]) { |
ソース(修正済み):
#include "stdafx.h" #include "Windows.h" #include "Shlwapi.h" #pragma comment( lib, "Shlwapi.lib" ) //c:\temp\test.datの存在を確認 int _tmain(int argc, _TCHAR* argv[]) { |
スポンサード リンク