mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
14 lines
256 B
C++
14 lines
256 B
C++
#include "stdafx.h"
|
|
#include "DbgCommand.h"
|
|
|
|
SendDbgCommandCb SendDbgCommandFunc = nullptr;
|
|
|
|
void SendDbgCommand(DbgCommand id, CPUThread* t)
|
|
{
|
|
SendDbgCommandFunc(id, t);
|
|
}
|
|
|
|
void SetSendDbgCommandCallback(SendDbgCommandCb cb)
|
|
{
|
|
SendDbgCommandFunc = cb;
|
|
} |