make cross-instance pause work without being a shitshow

This commit is contained in:
Arisotura
2023-03-11 13:46:29 +01:00
parent ea951d092e
commit d296ce3f5e
4 changed files with 68 additions and 16 deletions

View File

@ -27,6 +27,8 @@ namespace IPC
enum
{
Cmd_Pause = 1,
Cmd_MAX
};
extern int InstanceID;
@ -37,6 +39,7 @@ void DeInit();
void Process();
bool SendCommand(u16 recipients, u16 command, u16 len, void* data);
bool CommandReceived(u16 command);
}