RAWINPUTDEVICE (Structures)
Last changed: -216.37.254.214

.
Summary
Structure containing device information for raw input.

C# Definition:

    /// <summary>
    /// Value type for raw input devices.
    /// </summary>
    [StructLayout(LayoutKind.Sequential)]
    public struct RAWINPUTDEVICE
    {
        /// <summary>Top level collection Usage page for the raw input device.</summary>
        public short UsagePage;
        /// <summary>Top level collection Usage for the raw input device. </summary>
        public short Usage;
        /// <summary>Mode flag that specifies how to interpret the information provided by UsagePage and Usage.</summary>
        public RawInputDeviceFlags Flags;
        /// <summary>Handle to the target device. If NULL, it follows the keyboard focus.</summary>
        public IntPtr WindowHandle;
    }

VB Definition:

Structure RAWINPUTDEVICE
   Public TODO
End Structure

User-Defined Field Types:

None.

Notes:

None.

Documentation