mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 05:37:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
//// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|
||||
//// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|
||||
//// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|
||||
//// PARTICULAR PURPOSE.
|
||||
////
|
||||
//// Copyright (c) Microsoft Corporation. All rights reserved
|
||||
#pragma once
|
||||
|
||||
#if TV_API
|
||||
|
||||
namespace Microsoft {
|
||||
namespace Xbox {
|
||||
namespace GameChat {
|
||||
|
||||
private class StringUtils
|
||||
{
|
||||
public:
|
||||
static Platform::String^
|
||||
GetLogExceptionDebugInfo(
|
||||
_In_ HRESULT hr,
|
||||
_In_opt_ PCWSTR pwszFunction,
|
||||
_In_opt_ PCWSTR pwszFile,
|
||||
_In_ uint32 uLine
|
||||
);
|
||||
|
||||
static bool IsStringEqualCaseInsenstive(
|
||||
_In_ Platform::String^ val1,
|
||||
_In_ Platform::String^ val2
|
||||
);
|
||||
|
||||
static Platform::String^
|
||||
GetStringFormat(
|
||||
_In_ LPCWSTR strMsg,
|
||||
_In_ va_list args
|
||||
);
|
||||
|
||||
static Platform::String^
|
||||
FormatString( LPCWSTR strMsg, ... );
|
||||
};
|
||||
|
||||
}}}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user