etebase_item_set_content method
Set the content of the item
@param this_ the object handle @param content the content of the item as a byte array @param content_size the content size
Implementation
int etebase_item_set_content(
ffi.Pointer<EtebaseItem> this_,
ffi.Pointer<ffi.Void> content,
int content_size,
) {
return _etebase_item_set_content(
this_,
content,
content_size,
);
}