我正在使用mingw G ++(均在Windows 10上)将VS2015 C ++ Directx / Winforms应用程序转换为VS代码。
添加-mwindows选项(以及一堆库)后,我可以进行编译和链接,但是进入WinMain后,hInstance中没有任何值。
#include <objbase.h>
#include <windows.h>
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
LoadString(hInstance, IDS_APP_TITLE,g_szAppName, MAX_LOADSTRING);
...
导致诸如LoadString或RegisterClassEx的任何依赖项无法正常工作。
我应该找什么?