etebase_collection_set_content method
int
etebase_collection_set_content(
- Pointer<
EtebaseCollection> this_, - Pointer<
Void> content, - int content_size
Set the content of the collection
@param this_ the object handle @param content the content of the collection as a byte array @param content_size the content size
Implementation
int etebase_collection_set_content(
ffi.Pointer<EtebaseCollection> this_,
ffi.Pointer<ffi.Void> content,
int content_size,
) {
return _etebase_collection_set_content(
this_,
content,
content_size,
);
}