From c4f11f37c249c122d37694ed126713528ebea70c Mon Sep 17 00:00:00 2001 From: cerebrate Date: Thu, 24 Apr 2014 10:44:11 -0500 Subject: [PATCH] Fixed field reordering problem. --- Jiggler.cs | 13 ++++++++----- MouseJiggle.csproj | 5 +++-- MouseJiggle.sln.DotSettings | 2 ++ Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 15 insertions(+), 9 deletions(-) create mode 100644 MouseJiggle.sln.DotSettings diff --git a/Jiggler.cs b/Jiggler.cs index cf7d59f..e9a284a 100644 --- a/Jiggler.cs +++ b/Jiggler.cs @@ -5,16 +5,20 @@ // Alistair J. R. Young // Arkane Systems // -// Copyright Arkane Systems 2012-2013. +// Copyright Arkane Systems 2012-2013. All rights reserved. // -// Created: 2013-08-24 12:41 PM +// Created: 2014-04-24 8:08 AM #endregion +#region using + using System; using System.ComponentModel; using System.Runtime.InteropServices; +#endregion + namespace ArkaneSystems.MouseJiggle { public static class Jiggler @@ -43,15 +47,14 @@ public static void Jiggle (int dx, int dy) /* This is a kludge, presetting all this, but WTF. It works. * And for a program this trivial, who's bothered? */ - internal struct INPUT { public int TYPE; - public IntPtr dwExtraInfo; - public int dwFlags; public int dx; public int dy; public int mouseData; + public int dwFlags; public int time; + public IntPtr dwExtraInfo; } } diff --git a/MouseJiggle.csproj b/MouseJiggle.csproj index 799c640..42937a6 100644 --- a/MouseJiggle.csproj +++ b/MouseJiggle.csproj @@ -66,10 +66,11 @@ x86 - 312C24635AF74E4435993134F4550FBAAE0D5E68 + 460A6E11188F056647C56FBEBB51074E9C4E73CB - MouseJiggle_TemporaryKey.pfx + + true diff --git a/MouseJiggle.sln.DotSettings b/MouseJiggle.sln.DotSettings new file mode 100644 index 0000000..2c5e498 --- /dev/null +++ b/MouseJiggle.sln.DotSettings @@ -0,0 +1,2 @@ + + 3E4B13AD-E606-4BDC-99E8-0BEB2F1E93B3/f:Jiggler.cs \ No newline at end of file diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index ecf912c..ccb8802 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -52,6 +52,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion ("1.5.0.0")] -[assembly: AssemblyFileVersion ("1.5.0.0")] +[assembly: AssemblyVersion ("1.6.0.0")] +[assembly: AssemblyFileVersion ("1.6.0.0")] [assembly: NeutralResourcesLanguage ("en-US")]