etebase_fs_cache_collection_load_stoken method

Pointer<Char> etebase_fs_cache_collection_load_stoken(
  1. Pointer<EtebaseFileSystemCache> this_,
  2. Pointer<Char> col_uid
)

Load the sync token for a collection

@param this_ the object handle @param col_uid the UID of the collection

Implementation

ffi.Pointer<ffi.Char> etebase_fs_cache_collection_load_stoken(
  ffi.Pointer<EtebaseFileSystemCache> this_,
  ffi.Pointer<ffi.Char> col_uid,
) {
  return _etebase_fs_cache_collection_load_stoken(
    this_,
    col_uid,
  );
}