aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'config.h')
-rw-r--r--config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..d053bc7
--- /dev/null
+++ b/config.h
@@ -0,0 +1,15 @@
+#ifndef CONFIG_H
+#define CONFIG_H
+
+typedef struct config_t {
+ char SMS_INBOX[256];
+ char SMS_OUTBOX[256];
+ char SMS_SENTBOX[256];
+ char MMS_DIR[256];
+ char CONTACT_FILENAME[256];
+
+} config_t;
+
+int readConfigFile(void);
+
+#endif