Share via


HIDP_DATA (Windows CE 5.0)

Send Feedback

This structure contains information about a HID control's data index and value in a HID report.

typedef struct _HIDP_DATA {  USHORT DataIndex;  USHORT Reserved;  union {    ULONG RawValue;    BOOLEAN On;  };} HIDP_DATA, * PHIDP_DATA;

Members

  • DataIndex
    Data index of a control.
  • Reserved
    Reserved for internal system use only.
  • RawValue
    Binary data extracted from a report if the control is a value.
  • On
    Button setting indicator. If TRUE and the control is a button, that the button is set to On (one). If On is FALSE and the control is a button, the button is set to Off (zero).

Requirements

OS Versions: Windows CE .NET 4.2 and later.
Header: Hidpi.h.

See Also

HidP_GetData, HidP_SetData

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.