うーん、何故でしょう…
とりあえず当方で改めて試したらできましたので、簡単なテストコードを載せておきます
/* * * WinMain.cpp * * */
#include "DxLib.h"
#define ICON 100
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nCmdShow) {
ChangeWindowMode(TRUE);
SetWindowIconID(ICON);
if(DxLib_Init() == -1) {
MessageBox(NULL, "DirectX初期化エラー", "エラー", MB_OK);
return -1;
}
DrawString(0, 0, "Press Any Key.", GetColor(255, 255, 255));
WaitKey();
return 0;
}
/* * * Resource.rc * * */
100 ICON "icon.ico"