myDeCompress method

Pointer<TVALUE> myDeCompress(
  1. Pointer<Uint8> data,
  2. int length,
  3. Pointer<Char> path
)

Implementation

ffi.Pointer<TVALUE> myDeCompress(
  ffi.Pointer<ffi.Uint8> data,
  int length,
  ffi.Pointer<ffi.Char> path,
) {
  return _myDeCompress(
    data,
    length,
    path,
  );
}