| 368 | } |
| 369 | |
| 370 | void ckpt_sav_commit(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 371 | { |
| 372 | const int handle = savArg(ScriptArgs(Parser, Param, NumArgs, "sav_commit"), 0); |
| 373 | ReturnValue->Val->Integer = host().savCommit(handle); |
| 374 | } |
| 375 | |
| 376 | void ckpt_sav_close(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 377 | { |
nothing calls this directly
no test coverage detected