etebase_fs_cache_item_unset method
int
etebase_fs_cache_item_unset(
- Pointer<
EtebaseFileSystemCache> this_, - Pointer<
EtebaseItemManager> item_mgr, - Pointer<
Char> col_uid, - Pointer<
Char> item_uid,
Remove 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
int etebase_fs_cache_item_unset(
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_unset(
this_,
item_mgr,
col_uid,
item_uid,
);
}