etebase_fs_cache_item_get method

Pointer<EtebaseItem> etebase_fs_cache_item_get(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<EtebaseItemManager> item_mgr,
  3. Pointer<Char> col_uid,
  4. Pointer<Char> item_uid,
)

Load an item from cache

@param this_ the object handle @param item_mgr item manager for the parent collection @param col_uid the UID of the parent collection @param item_uid the UID of the item

Implementation

ffi.Pointer<EtebaseItem> etebase_fs_cache_item_get(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<EtebaseItemManager> item_mgr,
  ffi.Pointer<ffi.Char> col_uid,
  ffi.Pointer<ffi.Char> item_uid,
) {
  return _etebase_fs_cache_item_get(
    this_,
    item_mgr,
    col_uid,
    item_uid,
  );
}