diff options
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(); |