bspatch_error_string method

Pointer<Char> bspatch_error_string(
  1. int error_code
)

获取错误描述

@param error_code 错误码 @return 错误描述字符串

Implementation

ffi.Pointer<ffi.Char> bspatch_error_string(int error_code) {
  return _bspatch_error_string(error_code);
}