// hidpddi.h
typedef struct _HIDP_GETCOLDESC_DBG {
ULONG BreakOffset;
ULONG ErrorCode;
ULONG Args[6];
} HIDP_GETCOLDESC_DBG, *PHIDP_GETCOLDESC_DBG;
View the official Windows Driver Kit DDI referenceNo description available.
Contains the error code indicating the failure in parsing the report descriptor. This structure is used in the HidP_GetCollectionDescription call.
BreakOffsetThe byte offset in the report descriptor where the parsing error occurred.
ErrorCodeIndicates the parsing error, if it’s not HIDP_GETCOLDESC_SUCCESS.
All possible values are defined in hidpddi.h, from HIDP_GETCOLDESC_SUCCESS to the end of the file.
ArgsError-specific arguments. These are described as comments in the possible values for ErrorCode in hidpddi.h.