// SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin and contributors. // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0) #pragma once #include namespace GDBServer { bool Initialize(u16 port); bool HasAnyClients(); void Shutdown(); void OnSystemPaused(); void OnSystemResumed(); } // namespace GDBServer