etebase_fs_cache_item_set method
int
etebase_fs_cache_item_set(
- Pointer<
EtebaseFileSystemCache> this_, - Pointer<
EtebaseItemManager> item_mgr, - Pointer<
Char> col_uid, - Pointer<
EtebaseItem> item,
Save an item to 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 the item to be saved
Implementation
int etebase_fs_cache_item_set(
ffi.Pointer<EtebaseFileSystemCache> this_,
ffi.Pointer<EtebaseItemManager> item_mgr,
ffi.Pointer<ffi.Char> col_uid,
ffi.Pointer<EtebaseItem> item,
) {
return _etebase_fs_cache_item_set(
this_,
item_mgr,
col_uid,
item,
);
}