mirror of
https://github.com/xenia-project/xenia.git
synced 2026-01-31 04:44:24 +01:00
50 lines
586 B
Plaintext
50 lines
586 B
Plaintext
include "common.fbs";
|
|
|
|
namespace xe.debug.proto;
|
|
|
|
table StopRequest {
|
|
}
|
|
table StopResponse {
|
|
}
|
|
|
|
|
|
table BreakRequest {
|
|
}
|
|
table BreakResponse {
|
|
}
|
|
|
|
enum ContinueAction:byte {
|
|
Continue,
|
|
ContinueTo,
|
|
}
|
|
|
|
table ContinueRequest {
|
|
action:ContinueAction;
|
|
target_address:uint;
|
|
}
|
|
table ContinueResponse {
|
|
}
|
|
|
|
enum StepAction:byte {
|
|
StepIn,
|
|
StepOver,
|
|
StepOut,
|
|
}
|
|
|
|
table StepRequest {
|
|
action:StepAction;
|
|
thread_id:uint;
|
|
}
|
|
table StepResponse {
|
|
}
|
|
|
|
table BreakpointEvent {
|
|
thread_id:uint;
|
|
breakpoint_id:uint;
|
|
}
|
|
|
|
table AccessViolationEvent {
|
|
thread_id:uint;
|
|
target_address:uint;
|
|
}
|