mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 22:47:03 +00:00
Include cleaning
This commit is contained in:
parent
6f0531b3f7
commit
50b5d72bb2
31 changed files with 291 additions and 216 deletions
|
|
@ -1,7 +1,14 @@
|
|||
#include "stdafx.h"
|
||||
#include "rpcs3.h"
|
||||
#include "DbgCommand.h"
|
||||
|
||||
void SendDbgCommand(DbgCommand id, CPUThread* thr )
|
||||
SendDbgCommandCb SendDbgCommandFunc = nullptr;
|
||||
|
||||
void SendDbgCommand(DbgCommand id, CPUThread* t)
|
||||
{
|
||||
wxGetApp().SendDbgCommand(id, thr);
|
||||
SendDbgCommandFunc(id, t);
|
||||
}
|
||||
|
||||
void SetSendDbgCommandCallback(SendDbgCommandCb cb)
|
||||
{
|
||||
SendDbgCommandFunc = cb;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue