mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 11:25:39 +00:00
14 lines
316 B
C
14 lines
316 B
C
![]() |
#pragma once
|
||
|
#include <string_view>
|
||
|
|
||
|
namespace GDBProtocol
|
||
|
{
|
||
|
|
||
|
bool IsPacketInterrupt(const std::string_view& data);
|
||
|
bool IsPacketContinue(const std::string_view& data);
|
||
|
|
||
|
bool IsPacketComplete(const std::string_view& data);
|
||
|
std::string ProcessPacket(const std::string_view& data);
|
||
|
|
||
|
} // namespace GDBProtocol
|