engine/platformX86UNIX/x86UNIXProcessControl.cc
2024-01-07 04:36:33 +00:00

24 lines
545 B
C++

//-----------------------------------------------------------------------------
// V12 Engine
//
// Copyright (c) 2001 GarageGames.Com
// Portions Copyright (c) 2001 by Sierra Online, Inc.
//-----------------------------------------------------------------------------
#include "platformX86UNIX/platformX86UNIX.h"
void Platform::postQuitMessage(const U32 in_quitVal)
{
// PostQuitMessage(in_quitVal);
}
void Platform::debugBreak()
{
// DebugBreak();
}
void Platform::forceShutdown(S32 returnValue)
{
// ExitProcess(returnValue);
}