etebase_item_clone method

Pointer<EtebaseItem> etebase_item_clone(
  1. Pointer<EtebaseItem> this_
)

Clone an item object

@param this_ the object handle

Implementation

ffi.Pointer<EtebaseItem> etebase_item_clone(
  ffi.Pointer<EtebaseItem> this_,
) {
  return _etebase_item_clone(
    this_,
  );
}