Files
XCEngine/new_editor/app/Platform/Win32/EditorWindowRuntimeInternal.h

22 lines
535 B
C
Raw Normal View History

#pragma once
#include "Internal/EnvironmentFlags.h"
#include "Internal/StringEncoding.h"
#include "Internal/TextFormat.h"
#include <array>
#include <string_view>
#include <windows.h>
namespace XCEngine::UI::Editor::App::EditorWindowInternal {
bool ResolveVerboseRuntimeTraceEnabled();
void LogRuntimeTrace(std::string_view channel, std::string_view message);
bool IsAutoCaptureOnStartupEnabled();
using App::Internal::TruncateText;
using App::Internal::WideToUtf8;
} // namespace XCEngine::UI::Editor::App::EditorWindowInternal