2012-04-19 14:35:52 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2012-04-25 16:18:04 +08:00
|
|
|
#include <Windows.h>
|
2012-06-19 17:22:55 +08:00
|
|
|
#include "platform/CCCommon.h"
|
2012-04-25 16:18:04 +08:00
|
|
|
#include "CCStdC.h"
|
|
|
|
|
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)
|
|
|
|
|
2012-04-25 16:18:04 +08:00
|
|
|
void CCLog(const char * pszFormat, ...)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
char szBuf[MAX_LEN];
|
|
|
|
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, pszFormat);
|
|
|
|
vsnprintf_s(szBuf, MAX_LEN, MAX_LEN, pszFormat, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
WCHAR wszBuf[MAX_LEN] = {0};
|
|
|
|
MultiByteToWideChar(CP_UTF8, 0, szBuf, -1, wszBuf, sizeof(wszBuf));
|
|
|
|
OutputDebugStringW(wszBuf);
|
|
|
|
OutputDebugStringA("\n");
|
2012-09-02 13:21:30 +08:00
|
|
|
|
|
|
|
WideCharToMultiByte(CP_ACP, 0, wszBuf, sizeof(wszBuf), szBuf, sizeof(szBuf), NULL, FALSE);
|
|
|
|
printf("%s\n", szBuf);
|
2012-04-25 16:18:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCMessageBox(const char * pszMsg, const char * pszTitle)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
2012-04-25 16:18:04 +08:00
|
|
|
MessageBoxA(NULL, pszMsg, pszTitle, MB_OK);
|
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-09-07 10:15:17 +08:00
|
|
|
void CCLuaLog(const char * pszMsg)
|
2012-05-03 10:12:00 +08:00
|
|
|
{
|
2012-09-07 10:15:17 +08:00
|
|
|
CCLog("%s", pszMsg);
|
2012-04-26 09:34:42 +08:00
|
|
|
}
|
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
NS_CC_END
|
|
|
|
|