HARDWAREINPUT (Structures)
Last changed: -157.82.157.63

.
Summary
Data structure used by SendInput to simulate hardware input

C# Definition:

struct HARDWAREINPUT {
  int uMsg;
  short wParamL;
  short wParamH;
}

VB Definition:

<StructLayout(LayoutKind.Sequential, Pack = 1)> _
Structure HARDWAREINPUT
  Public uMsg As Integer
  Public wParamL As Short
  Public wParamH As Short
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation

-Jeremy