summaryrefslogtreecommitdiffstats
path: root/src/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/config.h b/src/config.h
index e977cdc..33bfd1e 100644
--- a/src/config.h
+++ b/src/config.h
@@ -3,10 +3,22 @@
#include <Python.h>
-typedef struct Config Config;
+#include "stringlist.h"
+#include "message.h"
-Config *createConfig(const char *argv[], int argc);
+typedef struct BareConfig BareConfig;
-PyObject *_object(Config*);
+BareConfig* bareConfigCreate(Message* m, FILE* outFd, FILE* inFd, FILE* errFd);
+
+/*
+ * FIXME : could the Python lib work the same way ?
+ */
+
+const char* bareConfigGetDefaultValue(BareConfig* cfg, const char*);
+int bareConfigSetOptionValue(BareConfig* cfg, const char*, const char*);
+
+PyObject* _bareConfigObject(BareConfig*);
+
+void bareConfigFree(BareConfig*);
#endif