diff options
Diffstat (limited to 'shhhonidle/options.h')
-rw-r--r-- | shhhonidle/options.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/shhhonidle/options.h b/shhhonidle/options.h new file mode 100644 index 0000000..5bbd4aa --- /dev/null +++ b/shhhonidle/options.h @@ -0,0 +1,17 @@ +#ifndef _OPTIONS_INC
+#define _OPTIONS_INC
+
+#include "common.h"
+
+typedef struct Options_tag {
+ BYTE dummy;
+} Options;
+
+extern Options options;
+
+int OptInit(WPARAM wParam, LPARAM lParam);
+
+void LoadOptions();
+void SaveOptions();
+
+#endif
|