This repository has been archived on 2021-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
glovechat/src/conf/conf.h

15 lines
201 B
C

#ifndef GLV_CONF_CONF_H
#define GLV_CONF_CONF_H
#include "conf/ini.h"
struct {
glv_ini_t* global;
} _config;
int glv_config_load_global(const char* path);
void glv_config_unload(void);
#endif