1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-04-29 20:04:06 +00:00
seafile-server/server/fileserver-config.h

19 lines
458 B
C
Raw Permalink Normal View History

2016-08-10 06:53:33 +00:00
#ifndef SEAFILE_FILESERVER_CONFIG_H
#define SEAFILE_FILESERVER_CONFIG_H
struct GKeyFile;
int
fileserver_config_get_integer(GKeyFile *config, char *key, GError **error);
char *
fileserver_config_get_string(GKeyFile *config, char *key, GError **error);
int
fileserver_config_get_int64(GKeyFile *config, char *key, GError **error);
2016-08-10 06:53:33 +00:00
gboolean
fileserver_config_get_boolean(GKeyFile *config, char *key, GError **error);
#endif // SEAFILE_FILESERVER_CONFIG_H