1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 08:06:04 +02:00

Breakpoint hotkeys, autocomplete fix

This commit is contained in:
Brian Fiete 2019-12-13 14:25:15 -08:00
parent d6a9f4c9ca
commit 1c6c06fa4d
20 changed files with 316 additions and 262 deletions

View file

@ -19,6 +19,21 @@ namespace IDE.Debugger
MultipleOf
};
public enum SetKind
{
Toggle,
Force,
EnsureExists,
MustExist
}
public enum SetFlags
{
None,
Configure,
Disable
}
[StdCall, CLink]
static extern void Breakpoint_Delete(void* nativeBreakpoint);