etebase_item_set_content method

int etebase_item_set_content(
  1. Pointer<EtebaseItem> this_,
  2. Pointer<Void> content,
  3. int content_size
)

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,
  );
}