rpcsx/rpcs3/Emu/DbgCommand.cpp

14 lines
256 B
C++
Raw Normal View History

#include "stdafx.h"
2014-08-24 19:42:19 +02:00
#include "DbgCommand.h"
2014-08-24 19:42:19 +02:00
SendDbgCommandCb SendDbgCommandFunc = nullptr;
void SendDbgCommand(DbgCommand id, CPUThread* t)
{
2014-08-24 19:42:19 +02:00
SendDbgCommandFunc(id, t);
2014-07-10 22:54:12 +02:00
}
2014-08-24 19:42:19 +02:00
void SetSendDbgCommandCallback(SendDbgCommandCb cb)
{
SendDbgCommandFunc = cb;
}