2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:25:07 +08:00
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2012-04-19 14:35:52 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
2014-01-31 08:51:43 +08:00
|
|
|
|
2014-09-10 08:41:49 +08:00
|
|
|
#include "platform/CCPlatformConfig.h"
|
2014-01-31 08:51:43 +08:00
|
|
|
#if CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|
|
|
|
|
2014-05-17 05:36:00 +08:00
|
|
|
#include "platform/CCCommon.h"
|
2014-09-10 08:53:08 +08:00
|
|
|
#include "platform/CCStdC.h"
|
2012-04-25 16:18:04 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_BEGIN
|
2012-04-25 16:18:04 +08:00
|
|
|
|
2012-06-19 17:22:55 +08:00
|
|
|
#define MAX_LEN (cocos2d::kMaxLogLen + 1)
|
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
void MessageBox(const char * pszMsg, const char * pszTitle)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2014-07-10 00:45:27 +08:00
|
|
|
MessageBoxA(nullptr, pszMsg, pszTitle, MB_OK);
|
2012-04-25 16:18:04 +08:00
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2013-06-20 14:13:12 +08:00
|
|
|
void LuaLog(const char *pszMsg)
|
2012-05-03 10:12:00 +08:00
|
|
|
{
|
2014-07-10 00:45:27 +08:00
|
|
|
int bufflen = MultiByteToWideChar(CP_UTF8, 0, pszMsg, -1, nullptr, 0);
|
2012-10-31 11:02:36 +08:00
|
|
|
WCHAR* widebuff = new WCHAR[bufflen + 1];
|
|
|
|
memset(widebuff, 0, sizeof(WCHAR) * (bufflen + 1));
|
|
|
|
MultiByteToWideChar(CP_UTF8, 0, pszMsg, -1, widebuff, bufflen);
|
2012-09-07 10:41:54 +08:00
|
|
|
|
2012-10-31 11:02:36 +08:00
|
|
|
OutputDebugStringW(widebuff);
|
2012-09-07 10:41:54 +08:00
|
|
|
OutputDebugStringA("\n");
|
|
|
|
|
2015-08-14 21:17:51 +08:00
|
|
|
bufflen = WideCharToMultiByte(CP_ACP, 0, widebuff, -1, nullptr, 0, nullptr, nullptr);
|
|
|
|
char* buff = new char[bufflen + 1];
|
|
|
|
memset(buff, 0, sizeof(char) * (bufflen + 1));
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, widebuff, -1, buff, bufflen, nullptr, nullptr);
|
|
|
|
puts(buff);
|
|
|
|
|
|
|
|
delete[] widebuff;
|
|
|
|
delete[] buff;
|
2012-04-26 09:34:42 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|
2014-01-31 08:51:43 +08:00
|
|
|
|
|
|
|
#endif // CC_TARGET_PLATFORM == CC_PLATFORM_WIN32
|