PINE: Disable for Qt (for now)

This commit is contained in:
Connor McLaughlin 2021-12-19 00:30:20 +10:00 committed by refractionpcsx2
parent 252562db90
commit c5c4cdd0b4
2 changed files with 8 additions and 0 deletions

View File

@ -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

View File

@ -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