Controller-Slide-Presenter/Win32Api/Input.cs

9 lines
No EOL
165 B
C#

using System.Runtime.InteropServices;
namespace Win32Api;
[StructLayout(LayoutKind.Sequential)]
public struct Input {
public uint type;
public InputUnion u;
}