- 290 名前:デフォルトの名無しさん mailto:sage [2007/06/02(土) 02:32:38 ]
- #include <windows.h>
#include <tchar.h> int WINAPI _tWinMain(HINSTANCE hInstance , HINSTANCE hPrevInstance , LPTSTR lpCmdLine , int nCmdShow ) { TCHAR chStr[128]; wsprintf(chStr , _T("インスタンスハンドル : %d") , hInstance); MessageBox(NULL , chStr , _T("Kitty on your lap") , MB_OK); return 0; }
|

|