etebase_fs_cache_load_account method
Pointer<EtebaseAccount>
etebase_fs_cache_load_account(
- Pointer<
EtebaseFileSystemCache> this_, - Pointer<
EtebaseClient> client, - Pointer<
Void> encryption_key, - int encryption_key_size,
Load the account object from cache
@param this_ the object handle
@param client the already setup Client object
@param encryption_key the same encryption key passed to Self::save_account
while saving the account
@param encryption_key_size the size of the encryption_key
Implementation
ffi.Pointer<EtebaseAccount> etebase_fs_cache_load_account(
ffi.Pointer<EtebaseFileSystemCache> this_,
ffi.Pointer<EtebaseClient> client,
ffi.Pointer<ffi.Void> encryption_key,
int encryption_key_size,
) {
return _etebase_fs_cache_load_account(
this_,
client,
encryption_key,
encryption_key_size,
);
}