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