mz_stream_os_open method

int mz_stream_os_open(
  1. Pointer<Void> stream,
  2. Pointer<Int8> path,
  3. int mode
)

/

Implementation

int mz_stream_os_open(
  ffi.Pointer<ffi.Void> stream,
  ffi.Pointer<ffi.Int8> path,
  int mode,
) {
  return _mz_stream_os_open(
    stream,
    path,
    mode,
  );
}