22 lines
535 B
C++
22 lines
535 B
C++
#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
|