| 352 | |
| 353 | |
| 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(); } |