diff options
Diffstat (limited to 'random_message_changer/options.h')
-rw-r--r-- | random_message_changer/options.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/random_message_changer/options.h b/random_message_changer/options.h new file mode 100644 index 0000000..9fe6a0a --- /dev/null +++ b/random_message_changer/options.h @@ -0,0 +1,26 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+typedef struct {
+ int iTimeOut;
+ bool cStatus;
+ bool cTime;
+ bool cAway;
+ bool cNa;
+ bool cOcc;
+ bool cDnd;
+ bool cFfc;
+
+ char file_away[STRING_LENGTH];
+ char file_na[STRING_LENGTH];
+ char file_occ[STRING_LENGTH];
+ char file_dnd[STRING_LENGTH];
+ char file_ffc[STRING_LENGTH];
+} Options;
+
+extern Options options;
+
+void LoadOptions();
+void SaveOptions();
+
+#endif
|