diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-12-12 08:33:21 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-12-12 08:33:21 +0000 |
commit | 88e6efae0b8867f14d59561f6503bfc41eb0d4d3 (patch) | |
tree | 7e50e21757a5bdf221afc2f4e7aa0eee588466f1 /plugins/!Deprecated/MagneticWindows/src/MagneticWindowsCore.h | |
parent | eb8546ca0013f26ed4330b35bfb7bcde0a1d9527 (diff) |
MagneticWindows moved to deprecated
git-svn-id: http://svn.miranda-ng.org/main/trunk@7134 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/!Deprecated/MagneticWindows/src/MagneticWindowsCore.h')
-rw-r--r-- | plugins/!Deprecated/MagneticWindows/src/MagneticWindowsCore.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/!Deprecated/MagneticWindows/src/MagneticWindowsCore.h b/plugins/!Deprecated/MagneticWindows/src/MagneticWindowsCore.h new file mode 100644 index 0000000000..aaff256590 --- /dev/null +++ b/plugins/!Deprecated/MagneticWindows/src/MagneticWindowsCore.h @@ -0,0 +1,35 @@ +#include <windows.h>
+#include <commctrl.h>
+#include <stdio.h>
+
+#include <newpluginapi.h>
+#include <m_clist.h>
+#include <m_clui.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();
|