- 449 名前:デフォルトの名無しさん mailto:sage [2009/03/14(土) 09:46:56 ]
- ttp://www.gamedev.net/community/forums/topic.asp?topic_id=458740
#include <windows.h> #include <string> #ifdef UNICODE typedef std::wstring InputBoxStringType; typedef LPWSTR InputBoxCharPointerType; typedef wchar_t InputBoxCharType; #define InputBoxString(x) L##x #else typedef std::string InputBoxStringType; typedef LPSTR InputBoxCharPointerType; typedef char InputBoxCharType; #define InputBoxString(x) x #endif
|

|