スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error LNK2019: 未解決の外部シンボル __imp__MessageBoxExA@20 が関数 _main で参照されました。xxxxxxxx.exe : fatal error LNK1120: 外部参照 1 が未解決です。
ソース(バグ有り):
#include "StdAfx.h" #include "windows.h" int main() { |
ソース(修正済み):
#include "StdAfx.h" #include "windows.h" int main() { |
スポンサード リンク