tge/engine/platformWin32/winProcessControl.cc
2025-02-17 23:17:30 -06:00

22 lines
504 B
C++
Executable File

//-----------------------------------------------------------------------------
// Torque Game Engine
// Copyright (C) GarageGames.com, Inc.
//-----------------------------------------------------------------------------
#include "platformWin32/platformWin32.h"
void Platform::postQuitMessage(const U32 in_quitVal)
{
PostQuitMessage(in_quitVal);
}
void Platform::debugBreak()
{
DebugBreak();
}
void Platform::forceShutdown(S32 returnValue)
{
ExitProcess(returnValue);
}