Skip to content

Commit

Permalink
Fixed field reordering problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
cerebrate committed Apr 24, 2014
1 parent e70bacf commit c4f11f3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
13 changes: 8 additions & 5 deletions Jiggler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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;
}
}
5 changes: 3 additions & 2 deletions MouseJiggle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,11 @@
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup>
<ManifestCertificateThumbprint>312C24635AF74E4435993134F4550FBAAE0D5E68</ManifestCertificateThumbprint>
<ManifestCertificateThumbprint>460A6E11188F056647C56FBEBB51074E9C4E73CB</ManifestCertificateThumbprint>
</PropertyGroup>
<PropertyGroup>
<ManifestKeyFile>MouseJiggle_TemporaryKey.pfx</ManifestKeyFile>
<ManifestKeyFile>
</ManifestKeyFile>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
Expand Down
2 changes: 2 additions & 0 deletions MouseJiggle.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/ExcludedFiles/GeneratedFilesAndFolders/=3E4B13AD_002DE606_002D4BDC_002D99E8_002D0BEB2F1E93B3_002Ff_003AJiggler_002Ecs/@EntryIndexedValue">3E4B13AD-E606-4BDC-99E8-0BEB2F1E93B3/f:Jiggler.cs</s:String></wpf:ResourceDictionary>
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit c4f11f3

Please sign in to comment.