lrm_free method

void lrm_free(
  1. Pointer<Void> ptr
)

Free a heap buffer that the library handed to the caller (e.g. the MIDI message data delivered to LrmMidiCallback). Safe to call with NULL.

Implementation

void lrm_free(ffi.Pointer<ffi.Void> ptr) {
  return _lrm_free(ptr);
}