py_setvmctx method

void py_setvmctx(
  1. Pointer<Void> ctx
)

Set the current VM context. This is used for user-defined data.

Implementation

void py_setvmctx(
  ffi.Pointer<ffi.Void> ctx,
) {
  return _py_setvmctx(
    ctx,
  );
}