| 354 | DebuggerContext *dbgCtxCreate(StackContext *inStack) { return new DebuggerContext(inStack); } |
| 355 | void dbgCtxDestroy(DebuggerContext *ctx) { delete ctx; } |
| 356 | void dbgCtxAttach(DebuggerContext *ctx, StackContext *inStack) { ctx->attach(inStack); } |
| 357 | void dbgCtxDetach(DebuggerContext *ctx) { ctx->detach(); } |
| 358 | void dbgCtxEnable(DebuggerContext *ctx, bool inEnable) { ctx->enable(inEnable); } |
| 359 |