Removed TryMouse structure left from testing the WinRawMouse code.

This commit is contained in:
the_fiddler 2008-01-18 14:01:06 +00:00
parent d3538521ee
commit 5cb5f2c74b

View file

@ -20,19 +20,7 @@ using System.Threading;
namespace Examples.Tests
{
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]
struct TryMouse
{
ushort usFlags;
ushort usButtonFlags;
ushort usButtonData;
uint ulRawButtons;
int lLastX;
int lLastY;
uint ulExtraInformation;
}
[Example("Input Logger", ExampleCategory.Test, 4)]
[Example("Input Logger", ExampleCategory.Test)]
public partial class S04_Input_Logger : Form
{
Thread thread;
@ -42,8 +30,6 @@ namespace Examples.Tests
public S04_Input_Logger()
{
//Console.WriteLine(sizeof(TryMouse));
Console.WriteLine(System.Runtime.InteropServices.Marshal.SizeOf(typeof(TryMouse)));
InitializeComponent();
}