mirror of https://github.com/PCSX2/pcsx2.git
PINE: Disable for Qt (for now)
This commit is contained in:
parent
252562db90
commit
c5c4cdd0b4
|
@ -15,6 +15,8 @@
|
|||
|
||||
#include "PrecompiledHeader.h"
|
||||
|
||||
#ifndef PCSX2_CORE
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <thread>
|
||||
|
@ -521,3 +523,5 @@ PINEServer::IPCBuffer PINEServer::ParseCommand(char* buf, char* ret_buffer, u32
|
|||
}
|
||||
return IPCBuffer{(int)ret_cnt, MakeOkIPC(ret_buffer, ret_cnt)};
|
||||
}
|
||||
|
||||
#endif
|
|
@ -18,6 +18,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#ifndef PCSX2_CORE
|
||||
|
||||
// PINE uses a concept of "slot" to be able to communicate with multiple
|
||||
// emulators at the same time, each slot should be unique to each emulator to
|
||||
// allow PnP and configurable by the end user so that several runs don't
|
||||
|
@ -222,3 +224,5 @@ public:
|
|||
virtual ~PINEServer();
|
||||
|
||||
}; // class SocketIPC
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue