diff options
Diffstat (limited to 'plugins/!Deprecated/MagneticWindows/src/Options.h')
-rw-r--r-- | plugins/!Deprecated/MagneticWindows/src/Options.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/!Deprecated/MagneticWindows/src/Options.h b/plugins/!Deprecated/MagneticWindows/src/Options.h new file mode 100644 index 0000000000..1e9affa629 --- /dev/null +++ b/plugins/!Deprecated/MagneticWindows/src/Options.h @@ -0,0 +1,16 @@ +
+#define cDefaultSnapWidth 12
+
+typedef
+ struct TOptions {
+ bool DoSnap;
+ int SnapWidth;
+ bool ScriverWorkAround;
+} TOptions;
+
+extern TOptions Options;
+
+INT_PTR CALLBACK OptionsDlgProc(HWND, UINT, WPARAM, LPARAM);
+
+int InitOptions(WPARAM, LPARAM);
+void LoadOptions();
\ No newline at end of file |