mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 17:45:31 +00:00
Removed TryMouse structure left from testing the WinRawMouse code.
This commit is contained in:
parent
d3538521ee
commit
5cb5f2c74b
|
@ -20,19 +20,7 @@ using System.Threading;
|
||||||
|
|
||||||
namespace Examples.Tests
|
namespace Examples.Tests
|
||||||
{
|
{
|
||||||
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]
|
[Example("Input Logger", ExampleCategory.Test)]
|
||||||
struct TryMouse
|
|
||||||
{
|
|
||||||
ushort usFlags;
|
|
||||||
ushort usButtonFlags;
|
|
||||||
ushort usButtonData;
|
|
||||||
uint ulRawButtons;
|
|
||||||
int lLastX;
|
|
||||||
int lLastY;
|
|
||||||
uint ulExtraInformation;
|
|
||||||
}
|
|
||||||
|
|
||||||
[Example("Input Logger", ExampleCategory.Test, 4)]
|
|
||||||
public partial class S04_Input_Logger : Form
|
public partial class S04_Input_Logger : Form
|
||||||
{
|
{
|
||||||
Thread thread;
|
Thread thread;
|
||||||
|
@ -42,8 +30,6 @@ namespace Examples.Tests
|
||||||
|
|
||||||
public S04_Input_Logger()
|
public S04_Input_Logger()
|
||||||
{
|
{
|
||||||
//Console.WriteLine(sizeof(TryMouse));
|
|
||||||
Console.WriteLine(System.Runtime.InteropServices.Marshal.SizeOf(typeof(TryMouse)));
|
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue