etebase_collection_get_meta_raw method
int
etebase_collection_get_meta_raw(
- Pointer<
EtebaseCollection> this_, - Pointer<
Void> buf, - int buf_size
Write the metadata of the collection to a byte array and return its length
@param this_ the object handle
@paramout
buf the output byte buffer
@param buf_size the maximum number of bytes to be written to buf
Implementation
int etebase_collection_get_meta_raw(
ffi.Pointer<EtebaseCollection> this_,
ffi.Pointer<ffi.Void> buf,
int buf_size,
) {
return _etebase_collection_get_meta_raw(
this_,
buf,
buf_size,
);
}