diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:45:20 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:45:20 +0000 |
commit | 1b54bd48f96e2223808c0742f0b7177382047b70 (patch) | |
tree | 5180beb55e2eb171c10ad14e93280e28311a09f0 /random_message_changer/options.h | |
parent | 49b4d6dd9d4d35adc9f02df4010a1a6b33faba63 (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@13 4f64403b-2f21-0410-a795-97e2b3489a10
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
|