22 lines
520 B
C++
22 lines
520 B
C++
#pragma once
|
|
|
|
#include "Support/EnvironmentFlags.h"
|
|
#include "Support/StringEncoding.h"
|
|
#include "Support/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 Support::TruncateText;
|
|
using Support::WideToUtf8;
|
|
|
|
} // namespace XCEngine::UI::Editor::App::EditorWindowInternal
|