etebase_collection_manager_create method
Pointer<EtebaseCollection>
etebase_collection_manager_create(
- Pointer<
EtebaseCollectionManager> this_, - Pointer<
Char> collection_type, - Pointer<
EtebaseItemMetadata> meta, - Pointer<
Void> content, - int content_size,
Create a new collection
Should be destroyed with etebase_collection_destroy
@param this_ the object handle
@param collection_type the type of Item
s stored in the collection
@param meta the ItemMetadata
for the collection
@param content the collection's content as a byte array. This is unrelated to the Item
s in the collection.
@param content_size the content size
Implementation
ffi.Pointer<EtebaseCollection> etebase_collection_manager_create(
ffi.Pointer<EtebaseCollectionManager> this_,
ffi.Pointer<ffi.Char> collection_type,
ffi.Pointer<EtebaseItemMetadata> meta,
ffi.Pointer<ffi.Void> content,
int content_size,
) {
return _etebase_collection_manager_create(
this_,
collection_type,
meta,
content,
content_size,
);
}