2023-03-11 22:10:18 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010 cocos2d-x.org
|
|
|
|
Copyright (c) Microsoft Open Technologies, Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
2023-03-12 01:44:55 +08:00
|
|
|
https://axmolengine.github.io/
|
2023-03-11 22:10:18 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "platform/Common.h"
|
|
|
|
#include "platform/StdC.h"
|
|
|
|
#include "platform/winrt/GLViewImpl-winrt.h"
|
|
|
|
#include "platform/winrt/WinRTUtils.h"
|
2023-03-11 22:10:18 +08:00
|
|
|
|
|
|
|
#if defined(VLD_DEBUG_MEMORY)
|
|
|
|
#include <vld.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_AX_BEGIN
|
|
|
|
|
2024-04-25 00:51:00 +08:00
|
|
|
void messageBox(const char * pszMsg, const char * pszTitle)
|
2023-03-11 22:10:18 +08:00
|
|
|
{
|
|
|
|
// Create the message dialog and set its content
|
2023-09-26 00:11:33 +08:00
|
|
|
auto message = PlatformStringFromString(pszMsg);
|
|
|
|
auto title = PlatformStringFromString(pszTitle);
|
2023-12-01 09:04:51 +08:00
|
|
|
GLViewImpl::sharedGLView()->ShowMessageBox(title, message);
|
2023-03-11 22:10:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_AX_END
|