rpcsx/rpcs3/Emu/DbgCommand.cpp

14 lines
256 B
C++
Raw Normal View History

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