diff options
author | George Hazan <ghazan@miranda.im> | 2018-03-13 13:59:18 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-03-13 13:59:18 +0300 |
commit | f9a6f40b7834edd693e8e5b8d64dbc7cd8921262 (patch) | |
tree | 7bc15bfe8681a98ce96695d37455c8b32829dbf3 /plugins/MagneticWindows/src/Options.h | |
parent | d4e64ad19a3bc6d384c973715497fc6283750e3a (diff) |
fixes #1179 (Resurrect MagneticWindows plugin)
Diffstat (limited to 'plugins/MagneticWindows/src/Options.h')
-rw-r--r-- | plugins/MagneticWindows/src/Options.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/MagneticWindows/src/Options.h b/plugins/MagneticWindows/src/Options.h new file mode 100644 index 0000000000..5a5b4bb318 --- /dev/null +++ b/plugins/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 |