123456789101112131415161718 |
- #ifndef LC6_CONFIG_H
- #define LC6_CONFIG_H
-
- #include "../inc/lc6_common.h"
-
- LC6_CTX* lc6config_load(char *path, unsigned char *password);
- int lc6config_save(LC6_CTX *conf, unsigned char *password);
- void lc6config_free(LC6_CTX *conf);
-
- void lc6config_load_file(
- LC6_CTX *conf,
- char *path,
- char *filename,
- unsigned char *password);
-
- void lc6config_bootstrap_add(LC6_CTX *conf, LC6_BOOTSTRAP *bs);
-
- #endif
|