mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-18 03:13:55 +00:00
12 lines
260 B
C++
12 lines
260 B
C++
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <string>
|
|
|
|
namespace debugger
|
|
{
|
|
void suspend_execution(std::chrono::milliseconds ms = std::chrono::milliseconds(0));
|
|
void send_message(const std::string& message);
|
|
std::string receive_message();
|
|
}
|