diff options
Diffstat (limited to 'attache/options.h')
-rw-r--r-- | attache/options.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/attache/options.h b/attache/options.h new file mode 100644 index 0000000..73174f7 --- /dev/null +++ b/attache/options.h @@ -0,0 +1,20 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+#include "version.h"
+
+typedef struct Options_tag {
+ bool upload;
+ bool confirm_upload;
+ bool delete_uploaded;
+ TCHAR reporter_id[512];
+} Options;
+
+extern Options options;
+
+int OptInit(WPARAM wParam, LPARAM lParam);
+
+void LoadOptions();
+void SaveOptions();
+
+#endif
|