18 lines
297 B
C
18 lines
297 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
typedef struct config_data_t {
|
|
const char* config_path;
|
|
char* modules_dir;
|
|
char* doc_formulas;
|
|
char* doc_graph;
|
|
char* doc_hotkeys;
|
|
char* doc_module_api;
|
|
|
|
|
|
} config_data_t;
|
|
|
|
extern config_data_t config_data;
|
|
|
|
extern int config_load(const char* path);
|
|
#endif |