etebase_fs_cache_collection_unset method

int etebase_fs_cache_collection_unset(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<EtebaseCollectionManager> col_mgr,
  3. Pointer<Char> col_uid
)

Remove a collection from cache

@param this_ the object handle @param col_mgr collection manager for the account @param col_uid the UID of the collection to remove

Implementation

int etebase_fs_cache_collection_unset(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<EtebaseCollectionManager> col_mgr,
  ffi.Pointer<ffi.Char> col_uid,
) {
  return _etebase_fs_cache_collection_unset(
    this_,
    col_mgr,
    col_uid,
  );
}