Created
April 9, 2014 23:09
-
-
Save kumatti1/10328360 to your computer and use it in GitHub Desktop.
(Ctrl+c)キー送信した際の挙動
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
int CALLBACK WinMain( | |
_In_ HINSTANCE hInstance, | |
_In_ HINSTANCE hPrevInstance, | |
_In_ LPSTR lpCmdLine, | |
_In_ int nCmdShow | |
) | |
{ | |
MessageBoxA(nullptr, "A", "A", MB_OK); | |
MessageBoxW(nullptr, L"W", L"W", MB_OK); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment