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/stdafx.h | |
parent | d4e64ad19a3bc6d384c973715497fc6283750e3a (diff) |
fixes #1179 (Resurrect MagneticWindows plugin)
Diffstat (limited to 'plugins/MagneticWindows/src/stdafx.h')
-rw-r--r-- | plugins/MagneticWindows/src/stdafx.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/MagneticWindows/src/stdafx.h b/plugins/MagneticWindows/src/stdafx.h new file mode 100644 index 0000000000..44a0b9dfee --- /dev/null +++ b/plugins/MagneticWindows/src/stdafx.h @@ -0,0 +1,34 @@ +#include <windows.h> +#include <commctrl.h> +#include <stdio.h> + +#include <newpluginapi.h> +#include <m_clist.h> +#include <m_message.h> +#include <m_system.h> +#include <m_options.h> +#include <m_database.h> +#include <m_langpack.h> +#include <m_MagneticWindows.h> + +#include "SnapToListService.h" +#include "Options.h" + +#include "resource.h" +#include "Version.h" + +typedef + struct { + int MouseX, MouseY; + bool SnappedX, SnappedY; + } TWorkingVariables; + + + +#define MODULE_NAME "MagneticWindows" +extern HINSTANCE hInst; + +void WindowStart(); +bool WindowOpen(HWND); +bool WindowClose(HWND); +void WindowCloseAll(); |