14 lines
240 B
C++
14 lines
240 B
C++
#pragma once
|
|
|
|
#ifndef NOMINMAX
|
|
#define NOMINMAX
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
namespace XCEngine::UI::Editor::App {
|
|
|
|
void AppendWin32UnhandledExceptionCrashTrace(EXCEPTION_POINTERS* exceptionInfo);
|
|
|
|
} // namespace XCEngine::UI::Editor::App
|