2017-01-24 19:30:59 +03:00
|
|
|
#ifndef GVFS_H
|
|
|
|
#define GVFS_H
|
|
|
|
|
2017-01-24 19:34:12 +03:00
|
|
|
|
2017-01-24 19:30:59 +03:00
|
|
|
/*
|
|
|
|
* This file is for the specific settings and methods
|
|
|
|
* used for GVFS functionality
|
|
|
|
*/
|
|
|
|
|
2017-01-24 19:38:59 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The list of bits in the core_gvfs setting
|
|
|
|
*/
|
|
|
|
#define GVFS_SKIP_SHA_ON_INDEX (1 << 0)
|
|
|
|
|
2017-01-24 19:34:12 +03:00
|
|
|
void gvfs_load_config_value(const char *value);
|
|
|
|
int gvfs_config_is_set(int mask);
|
|
|
|
|
2017-01-24 19:30:59 +03:00
|
|
|
#endif /* GVFS_H */
|