duckstation

duckstation, but archived from the revision just before upstream changed it to a proprietary software project, this version is the libre one
git clone https://git.neptards.moe/u3shit/duckstation.git
Log | Files | Refs | README | LICENSE

gdb_server.h (349B)


      1 // SPDX-FileCopyrightText: 2019-2024 Connor McLaughlin <stenzek@gmail.com> and contributors.
      2 // SPDX-License-Identifier: (GPL-3.0 OR CC-BY-NC-ND-4.0)
      3 
      4 #pragma once
      5 #include <string_view>
      6 
      7 namespace GDBServer {
      8 bool Initialize(u16 port);
      9 bool HasAnyClients();
     10 void Shutdown();
     11 
     12 void OnSystemPaused();
     13 void OnSystemResumed();
     14 } // namespace GDBServer