9 lines
No EOL
165 B
C#
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;
|
|
} |