System: Implement PINE server

This commit is contained in:
Stenzek
2024-05-25 23:49:19 +10:00
parent 4e905a63ec
commit 4311e08726
10 changed files with 681 additions and 6 deletions

13
src/core/pine_server.h Normal file
View File

@ -0,0 +1,13 @@
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team, Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: LGPL-3.0+
/* A reference client implementation for interfacing with PINE is available
* here: https://code.govanify.com/govanify/pine/ */
#pragma once
namespace PINEServer {
bool IsRunning();
bool Initialize(u16 slot);
void Shutdown();
} // namespace PINEServer