mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-23 16:45:37 +00:00
14 lines
385 B
C
14 lines
385 B
C
|
// 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
|