summaryrefslogtreecommitdiff
path: root/shhhonidle/options.h
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2006-11-01 14:45:50 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2006-11-01 14:45:50 +0000
commitbded3f3d452e097995cbb1e695aaec13a739d1af (patch)
tree58063185028dd4c3f0aea9d34d2a670c610eb2a2 /shhhonidle/options.h
parent1b54bd48f96e2223808c0742f0b7177382047b70 (diff)
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@14 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'shhhonidle/options.h')
-rw-r--r--shhhonidle/options.h17
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