mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-23 16:45:37 +00:00
15 lines
349 B
C++
15 lines
349 B
C++
// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <stenzek@gmail.com> and contributors.
|
|
// SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
|
|
|
|
#pragma once
|
|
#include <string_view>
|
|
|
|
namespace GDBServer {
|
|
bool Initialize(u16 port);
|
|
bool HasAnyClients();
|
|
void Shutdown();
|
|
|
|
void OnSystemPaused();
|
|
void OnSystemResumed();
|
|
} // namespace GDBServer
|