etebase_fs_cache_collection_get method
Pointer<EtebaseCollection>
etebase_fs_cache_collection_get(
- Pointer<
EtebaseFileSystemCache> this_, - Pointer<
EtebaseCollectionManager> col_mgr, - Pointer<
Char> col_uid
Load 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
Implementation
ffi.Pointer<EtebaseCollection> etebase_fs_cache_collection_get(
ffi.Pointer<EtebaseFileSystemCache> this_,
ffi.Pointer<EtebaseCollectionManager> col_mgr,
ffi.Pointer<ffi.Char> col_uid,
) {
return _etebase_fs_cache_collection_get(
this_,
col_mgr,
col_uid,
);
}