files
Table/includes/CONFIG.H
Mikhail Frolov b3981d174a Table: All editor code files have been added from the flash drive.
The start date of development is September 12, 2024.
2025-03-30 22:56:32 +05:00

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