new_aubio_window method
create window
\param window_type type of the window to create \param size length of the window to create (see fvec_set_window())
Implementation
ffi.Pointer<fvec_t> new_aubio_window(
ffi.Pointer<char_t> window_type,
int size,
) {
return _new_aubio_window(
window_type,
size,
);
}