Skip to content

Instantly share code, notes, and snippets.

@doccaico
Created March 7, 2023 04:21
Show Gist options
  • Select an option

  • Save doccaico/9a23cbda90140d8e4a456df2b0e30494 to your computer and use it in GitHub Desktop.

Select an option

Save doccaico/9a23cbda90140d8e4a456df2b0e30494 to your computer and use it in GitHub Desktop.
メッセージボックス Mingw64 日本語
// gcc main.c -DUNICODE -mwindows; .\a
#include <windows.h>
int WINAPI WinMain(HINSTANCE ins,
HINSTANCE previns,
LPSTR cmdline,
int cmd) {
MessageBox(NULL, TEXT("Hello world."), TEXT("メッセージボックス"), MB_OK);
// MessageBox(NULL, _T("Hello world."), _T("メッセージボックス"), MB_OK);
// MessageBox(NULL, "Hello world.", "Message Box", MB_OK);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment