pinvoke-input.txt
author StephaneLenclud
Sat, 14 Feb 2015 22:11:36 +0100
changeset 50 e6c103ebb155
permissions -rw-r--r--
Adding some hid.dll imports.
     1 //
     2 // SL: We use this file to generate P/Invoke using P/Invoke Interop Assistant.
     3 //
     4 
     5 
     6 typedef USHORT USAGE, *PUSAGE;
     7 typedef LONG NTSTATUS;
     8 
     9 #define HIDP_LINK_COLLECTION_ROOT ((USHORT) -1)
    10 #define HIDP_LINK_COLLECTION_UNSPECIFIED ((USHORT) 0)
    11 
    12 
    13 typedef enum _HIDP_REPORT_TYPE
    14 {
    15     HidP_Input,
    16     HidP_Output,
    17     HidP_Feature
    18 } HIDP_REPORT_TYPE;
    19 
    20 typedef struct _USAGE_AND_PAGE
    21 {
    22     USAGE Usage;
    23     USAGE UsagePage;
    24 } USAGE_AND_PAGE, *PUSAGE_AND_PAGE;
    25 
    26 #define HidP_IsSameUsageAndPage(u1, u2) ((* (PULONG) &u1) == (* (PULONG) &u2))
    27 
    28 typedef struct _HIDP_BUTTON_CAPS
    29 {
    30     USAGE    UsagePage;
    31     UCHAR    ReportID;
    32     BOOLEAN  IsAlias;
    33 
    34     USHORT   BitField;
    35     USHORT   LinkCollection;   // A unique internal index pointer
    36 
    37     USAGE    LinkUsage;
    38     USAGE    LinkUsagePage;
    39 
    40     BOOLEAN  IsRange;
    41     BOOLEAN  IsStringRange;
    42     BOOLEAN  IsDesignatorRange;
    43     BOOLEAN  IsAbsolute;
    44 
    45     ULONG    Reserved[10];
    46     union {
    47         struct {
    48             USAGE    UsageMin,         UsageMax;
    49             USHORT   StringMin,        StringMax;
    50             USHORT   DesignatorMin,    DesignatorMax;
    51             USHORT   DataIndexMin,     DataIndexMax;
    52         } Range;
    53         struct  {
    54             USAGE    Usage,            Reserved1;
    55             USHORT   StringIndex,      Reserved2;
    56             USHORT   DesignatorIndex,  Reserved3;
    57             USHORT   DataIndex,        Reserved4;
    58         } NotRange;
    59     };
    60 
    61 } HIDP_BUTTON_CAPS, *PHIDP_BUTTON_CAPS;
    62 
    63 
    64 typedef struct _HIDP_VALUE_CAPS
    65 {
    66     USAGE    UsagePage;
    67     UCHAR    ReportID;
    68     BOOLEAN  IsAlias;
    69 
    70     USHORT   BitField;
    71     USHORT   LinkCollection;   // A unique internal index pointer
    72 
    73     USAGE    LinkUsage;
    74     USAGE    LinkUsagePage;
    75 
    76     BOOLEAN  IsRange;
    77     BOOLEAN  IsStringRange;
    78     BOOLEAN  IsDesignatorRange;
    79     BOOLEAN  IsAbsolute;
    80 
    81     BOOLEAN  HasNull;        // Does this channel have a null report   union
    82     UCHAR    Reserved;
    83     USHORT   BitSize;        // How many bits are devoted to this value?
    84 
    85     USHORT   ReportCount;    // See Note below.  Usually set to 1.
    86     USHORT   Reserved2[5];
    87 
    88     ULONG    UnitsExp;
    89     ULONG    Units;
    90 
    91     LONG     LogicalMin,       LogicalMax;
    92     LONG     PhysicalMin,      PhysicalMax;
    93 
    94     union {
    95         struct {
    96             USAGE    UsageMin,         UsageMax;
    97             USHORT   StringMin,        StringMax;
    98             USHORT   DesignatorMin,    DesignatorMax;
    99             USHORT   DataIndexMin,     DataIndexMax;
   100         } Range;
   101 
   102         struct {
   103             USAGE    Usage,            Reserved1;
   104             USHORT   StringIndex,      Reserved2;
   105             USHORT   DesignatorIndex,  Reserved3;
   106             USHORT   DataIndex,        Reserved4;
   107         } NotRange;
   108     };
   109 } HIDP_VALUE_CAPS, *PHIDP_VALUE_CAPS;
   110 
   111 //
   112 // Notes:
   113 //
   114 // ReportCount:  When a report descriptor declares an Input, Output, or
   115 // Feature main item with fewer usage declarations than the report count, then
   116 // the last usage applies to all remaining unspecified count in that main item.
   117 // (As an example you might have data that required many fields to describe,
   118 // possibly buffered bytes.)  In this case, only one value cap structure is
   119 // allocated for these associtated fields, all with the same usage, and Report
   120 // Count reflects the number of fields involved.  Normally ReportCount is 1.
   121 // To access all of the fields in such a value structure would require using
   122 // HidP_GetUsageValueArray and HidP_SetUsageValueArray.   HidP_GetUsageValue/
   123 // HidP_SetScaledUsageValue will also work, however, these functions will only
   124 // work with the first field of the structure.
   125 //
   126 
   127 //
   128 // The link collection tree consists of an array of LINK_COLLECTION_NODES
   129 // where the index into this array is the same as the collection number.
   130 //
   131 // Given a collection A which contains a subcollection B, A is defined to be
   132 // the parent B, and B is defined to be the child.
   133 //
   134 // Given collections A, B, and C where B and C are children of A, and B was
   135 // encountered before C in the report descriptor, B is defined as a sibling of
   136 // C.  (This implies, of course, that if B is a sibling of C, then C is NOT a
   137 // sibling of B).
   138 //
   139 // B is defined as the NextSibling of C if and only if there exists NO
   140 // child collection of A, call it D, such that B is a sibling of D and D
   141 // is a sibling of C.
   142 //
   143 // E is defined to be the FirstChild of A if and only if for all children of A,
   144 // F, that are not equivalent to E, F is a sibling of E.
   145 // (This implies, of course, that the does not exist a child of A, call it G,
   146 // where E is a sibling of G).  In other words the first sibling is the last
   147 // link collection found in the list.
   148 //
   149 // In other words, if a collection B is defined within the definition of another
   150 // collection A, B becomes a child of A.  All collections with the same parent
   151 // are considered siblings.  The FirstChild of the parent collection, A, will be
   152 // last collection defined that has A as a parent.  The order of sibling pointers
   153 // is similarly determined.  When a collection B is defined, it becomes the
   154 // FirstChild of it's parent collection.  The previously defined FirstChild of the
   155 // parent collection becomes the NextSibling of the new collection.  As new
   156 // collections with the same parent are discovered, the chain of sibling is built.
   157 //
   158 // With that in mind, the following describes conclusively a data structure
   159 // that provides direct traversal up, down, and accross the link collection
   160 // tree.
   161 //
   162 //
   163 typedef struct _HIDP_LINK_COLLECTION_NODE
   164 {
   165     USAGE    LinkUsage;
   166     USAGE    LinkUsagePage;
   167     USHORT   Parent;
   168     USHORT   NumberOfChildren;
   169     USHORT   NextSibling;
   170     USHORT   FirstChild;
   171     ULONG    CollectionType: 8;  // As defined in 6.2.2.6 of HID spec
   172     ULONG    IsAlias : 1; // This link node is an allias of the next link node.
   173     ULONG    Reserved: 23;
   174     PVOID    UserContext; // The user can hang his coat here.
   175 } HIDP_LINK_COLLECTION_NODE, *PHIDP_LINK_COLLECTION_NODE;
   176 
   177 //
   178 // When a link collection is described by a delimiter, alias link collection
   179 // nodes are created.  (One for each usage within the delimiter).
   180 // The parser assigns each capability description listed above only one
   181 // link collection.
   182 //
   183 // If a control is defined within a collection defined by
   184 // delimited usages, then that control is said to be within multiple link
   185 // collections, one for each usage within the open and close delimiter tokens.
   186 // Such multiple link collecions are said to be aliases.  The first N-1 such
   187 // collections, listed in the link collection node array, have their IsAlias
   188 // bit set.  The last such link collection is the link collection index used
   189 // in the capabilities described above.
   190 // Clients wishing to set a control in an aliased collection, should walk the
   191 // collection array once for each time they see the IsAlias flag set, and use
   192 // the last link collection as the index for the below accessor functions.
   193 //
   194 // NB: if IsAlias is set, then NextSibling should be one more than the current
   195 // link collection node index.
   196 //
   197 
   198 typedef PUCHAR  PHIDP_REPORT_DESCRIPTOR;
   199 typedef struct _HIDP_PREPARSED_DATA * PHIDP_PREPARSED_DATA;
   200 
   201 typedef struct _HIDP_CAPS
   202 {
   203     USAGE    Usage;
   204     USAGE    UsagePage;
   205     USHORT   InputReportByteLength;
   206     USHORT   OutputReportByteLength;
   207     USHORT   FeatureReportByteLength;
   208     USHORT   Reserved[17];
   209 
   210     USHORT   NumberLinkCollectionNodes;
   211 
   212     USHORT   NumberInputButtonCaps;
   213     USHORT   NumberInputValueCaps;
   214     USHORT   NumberInputDataIndices;
   215 
   216     USHORT   NumberOutputButtonCaps;
   217     USHORT   NumberOutputValueCaps;
   218     USHORT   NumberOutputDataIndices;
   219 
   220     USHORT   NumberFeatureButtonCaps;
   221     USHORT   NumberFeatureValueCaps;
   222     USHORT   NumberFeatureDataIndices;
   223 } HIDP_CAPS, *PHIDP_CAPS;
   224 
   225 typedef struct _HIDP_DATA
   226 {
   227     USHORT  DataIndex;
   228     USHORT  Reserved;
   229     union {
   230         ULONG   RawValue; // for values
   231         BOOLEAN On; // for buttons MUST BE TRUE for buttons.
   232     };
   233 } HIDP_DATA, *PHIDP_DATA;
   234 //
   235 // The HIDP_DATA structure is used with HidP_GetData and HidP_SetData
   236 // functions.
   237 //
   238 // The parser contiguously assigns every control (button or value) in a hid
   239 // device a unique data index from zero to NumberXXXDataIndices -1 , inclusive.
   240 // This value is found in the HIDP_BUTTON_CAPS and HIDP_VALUE_CAPS structures.
   241 //
   242 // Most clients will find the Get/Set Buttons / Value accessor functions
   243 // sufficient to their needs, as they will allow the clients to access the
   244 // data known to them while ignoring the other controls.
   245 //
   246 // More complex clients, which actually read the Button / Value Caps, and which
   247 // do a value add service to these routines (EG Direct Input), will need to
   248 // access all the data in the device without interest in the individual usage
   249 // or link collection location.  These are the clients that will find
   250 // HidP_Data useful.
   251 //
   252 
   253 typedef struct _HIDP_UNKNOWN_TOKEN
   254 {
   255     UCHAR  Token;
   256     UCHAR  Reserved[3];
   257     ULONG  BitField;
   258 } HIDP_UNKNOWN_TOKEN, *PHIDP_UNKNOWN_TOKEN;
   259 
   260 typedef struct _HIDP_EXTENDED_ATTRIBUTES
   261 {
   262     UCHAR   NumGlobalUnknowns;
   263     UCHAR   Reserved [3];
   264     PHIDP_UNKNOWN_TOKEN  GlobalUnknowns;
   265     // ... Additional attributes
   266     ULONG   Data [1]; // variableLength  DO NOT ACCESS THIS FIELD
   267 } HIDP_EXTENDED_ATTRIBUTES, *PHIDP_EXTENDED_ATTRIBUTES;
   268 
   269 NTSTATUS __stdcall
   270 HidP_GetCaps (
   271          PHIDP_PREPARSED_DATA      PreparsedData,
   272         PHIDP_CAPS                Capabilities
   273    );
   274 /*++
   275 Routine Description:
   276    Returns a list of capabilities of a given hid device as described by its
   277    preparsed data.
   278 
   279 Arguments:
   280    PreparsedData    The preparsed data returned from HIDCLASS.
   281    Capabilities     a HIDP_CAPS structure
   282 
   283 Return Value:
   284    HIDP_STATUS_SUCCESS
   285    HIDP_STATUS_INVALID_PREPARSED_DATA
   286 --*/
   287 
   288 NTSTATUS __stdcall
   289 HidP_GetLinkCollectionNodes (
   290         PHIDP_LINK_COLLECTION_NODE LinkCollectionNodes,
   291       PULONG                     LinkCollectionNodesLength,
   292          PHIDP_PREPARSED_DATA       PreparsedData
   293    );
   294 /*++
   295 Routine Description:
   296    Return a list of PHIDP_LINK_COLLECTION_NODEs used to describe the link
   297    collection tree of this hid device.  See the above description of
   298    struct _HIDP_LINK_COLLECTION_NODE.
   299 
   300 Arguments:
   301    LinkCollectionNodes - a caller allocated array into which
   302                  HidP_GetLinkCollectionNodes will store the information
   303 
   304    LinKCollectionNodesLength - the caller sets this value to the length of the
   305                  the array in terms of number of elements.
   306                  HidP_GetLinkCollectionNodes sets this value to the actual
   307                  number of elements set. The total number of nodes required to
   308                  describe this HID device can be found in the
   309                  NumberLinkCollectionNodes field in the HIDP_CAPS structure.
   310 
   311 --*/
   312 
   313 NTSTATUS __stdcall
   314 HidP_GetSpecificButtonCaps (
   315           HIDP_REPORT_TYPE     ReportType,
   316           USAGE                UsagePage,      // Optional (0 => ignore)
   317           USHORT               LinkCollection, // Optional (0 => ignore)
   318           USAGE                Usage,          // Optional (0 => ignore)
   319    PHIDP_BUTTON_CAPS    ButtonCaps,
   320      PUSHORT              ButtonCapsLength,
   321           PHIDP_PREPARSED_DATA PreparsedData
   322    );
   323 /*++
   324 Description:
   325    HidP_GetButtonCaps returns all the buttons (binary values) that are a part
   326    of the given report type for the Hid device represented by the given
   327    preparsed data.
   328 
   329 Parameters:
   330    ReportType  One of HidP_Input, HidP_Output, or HidP_Feature.
   331 
   332    UsagePage   A usage page value used to limit the button caps returned to
   333                 those on a given usage page.  If set to 0, this parameter is
   334                 ignored.  Can be used with LinkCollection and Usage parameters
   335                 to further limit the number of button caps structures returned.
   336 
   337    LinkCollection HIDP_LINK_COLLECTION node array index used to limit the
   338                   button caps returned to those buttons in a given link
   339                   collection.  If set to 0, this parameter is
   340                   ignored.  Can be used with UsagePage and Usage parameters
   341                   to further limit the number of button caps structures
   342                   returned.
   343 
   344    Usage      A usage value used to limit the button caps returned to those
   345                with the specified usage value.  If set to 0, this parameter
   346                is ignored.  Can be used with LinkCollection and UsagePage
   347                parameters to further limit the number of button caps
   348                structures returned.
   349 
   350    ButtonCaps A _HIDP_BUTTON_CAPS array containing information about all the
   351                binary values in the given report.  This buffer is provided by
   352                the caller.
   353 
   354    ButtonLength   As input, this parameter specifies the length of the
   355                   ButtonCaps parameter (array) in number of array elements.
   356                   As output, this value is set to indicate how many of those
   357                   array elements were filled in by the function.  The maximum number of
   358                   button caps that can be returned is found in the HIDP_CAPS
   359                   structure.  If HIDP_STATUS_BUFFER_TOO_SMALL is returned,
   360                   this value contains the number of array elements needed to
   361                   successfully complete the request.
   362 
   363    PreparsedData  The preparsed data returned from HIDCLASS.
   364 
   365 
   366 Return Value
   367 HidP_GetSpecificButtonCaps returns the following error codes:
   368   HIDP_STATUS_SUCCESS.
   369   HIDP_STATUS_INVALID_REPORT_TYPE
   370   HIDP_STATUS_INVALID_PREPARSED_DATA
   371   HIDP_STATUS_BUFFER_TOO_SMALL (all given entries however have been filled in)
   372   HIDP_STATUS_USAGE_NOT_FOUND
   373 --*/
   374 NTSTATUS __stdcall
   375 HidP_GetButtonCaps (
   376           HIDP_REPORT_TYPE     ReportType,
   377    PHIDP_BUTTON_CAPS ButtonCaps,
   378        PUSHORT              ButtonCapsLength,
   379           PHIDP_PREPARSED_DATA PreparsedData
   380 );
   381 
   382 NTSTATUS __stdcall
   383 HidP_GetSpecificValueCaps (
   384           HIDP_REPORT_TYPE     ReportType,
   385           USAGE                UsagePage,      // Optional (0 => ignore)
   386           USHORT               LinkCollection, // Optional (0 => ignore)
   387           USAGE                Usage,          // Optional (0 => ignore)
   388           PHIDP_VALUE_CAPS     ValueCaps,
   389        PUSHORT              ValueCapsLength,
   390           PHIDP_PREPARSED_DATA PreparsedData
   391    );
   392 /*++
   393 Description:
   394    HidP_GetValueCaps returns all the values (non-binary) that are a part
   395    of the given report type for the Hid device represented by the given
   396    preparsed data.
   397 
   398 Parameters:
   399    ReportType  One of HidP_Input, HidP_Output, or HidP_Feature.
   400 
   401    UsagePage   A usage page value used to limit the value caps returned to
   402                 those on a given usage page.  If set to 0, this parameter is
   403                 ignored.  Can be used with LinkCollection and Usage parameters
   404                 to further limit the number of value caps structures returned.
   405 
   406    LinkCollection HIDP_LINK_COLLECTION node array index used to limit the
   407                   value caps returned to those buttons in a given link
   408                   collection.  If set to 0, this parameter is
   409                   ignored.  Can be used with UsagePage and Usage parameters
   410                   to further limit the number of value caps structures
   411                   returned.
   412 
   413    Usage      A usage value used to limit the value caps returned to those
   414                with the specified usage value.  If set to 0, this parameter
   415                is ignored.  Can be used with LinkCollection and UsagePage
   416                parameters to further limit the number of value caps
   417                structures returned.
   418 
   419    ValueCaps  A _HIDP_VALUE_CAPS array containing information about all the
   420                non-binary values in the given report.  This buffer is provided
   421                by the caller.
   422 
   423    ValueLength   As input, this parameter specifies the length of the ValueCaps
   424                   parameter (array) in number of array elements.  As output,
   425                   this value is set to indicate how many of those array elements
   426                   were filled in by the function.  The maximum number of
   427                   value caps that can be returned is found in the HIDP_CAPS
   428                   structure.  If HIDP_STATUS_BUFFER_TOO_SMALL is returned,
   429                   this value contains the number of array elements needed to
   430                   successfully complete the request.
   431 
   432    PreparsedData  The preparsed data returned from HIDCLASS.
   433 
   434 
   435 Return Value
   436 HidP_GetValueCaps returns the following error codes:
   437   HIDP_STATUS_SUCCESS.
   438   HIDP_STATUS_INVALID_REPORT_TYPE
   439   HIDP_STATUS_INVALID_PREPARSED_DATA
   440   HIDP_STATUS_BUFFER_TOO_SMALL (all given entries however have been filled in)
   441   HIDP_STATUS_USAGE_NOT_FOUND
   442 
   443 --*/
   444 
   445 NTSTATUS __stdcall
   446 HidP_GetValueCaps (
   447           HIDP_REPORT_TYPE     ReportType,
   448    PHIDP_VALUE_CAPS ValueCaps,
   449        PUSHORT              ValueCapsLength,
   450           PHIDP_PREPARSED_DATA PreparsedData
   451 );
   452 
   453 NTSTATUS __stdcall
   454 HidP_GetExtendedAttributes (
   455           HIDP_REPORT_TYPE            ReportType,
   456           USHORT                      DataIndex,
   457           PHIDP_PREPARSED_DATA        PreparsedData,
   458     PHIDP_EXTENDED_ATTRIBUTES Attributes,
   459        PULONG                      LengthAttributes
   460     );
   461 /*++
   462 Description:
   463     Given a data index from the value or button capabilities of a given control
   464     return any extended attributes for the control if any exist.
   465 
   466 Parameters:
   467     ReportType  One of HidP_Input, HidP_Output, or HidP_Feature.
   468 
   469     DataIndex   The data index for the given control, found in the capabilities
   470                 structure for that control
   471 
   472     PreparsedData   The preparsed data returned from HIDCLASS.
   473 
   474     Attributes  Pointer to a buffer into which the extended attribute data will
   475                 be copied.
   476 
   477     LengthAttributes    Length of the given buffer in bytes.
   478 
   479 Return Value
   480     HIDP_STATUS_SUCCESS
   481     HIDP_STATUS_DATA_INDEX_NOT_FOUND
   482 --*/
   483 
   484 NTSTATUS __stdcall
   485 HidP_InitializeReportForID (
   486     HIDP_REPORT_TYPE ReportType,
   487     UCHAR ReportID,
   488     PHIDP_PREPARSED_DATA PreparsedData,
   489    PCHAR Report,
   490     ULONG ReportLength
   491    );
   492 /*++
   493 
   494 Routine Description:
   495 
   496     Initialize a report based on the given report ID.
   497 
   498 Parameters:
   499 
   500     ReportType  One of HidP_Input, HidP_Output, or HidP_Feature.
   501 
   502     PreparasedData  Preparsed data structure returned by HIDCLASS
   503 
   504     Report      Buffer which to set the data into.
   505 
   506     ReportLength Length of Report...Report should be at least as long as the
   507                 value indicated in the HIDP_CAPS structure for the device and
   508                 the corresponding ReportType
   509 
   510 Return Value
   511 
   512   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
   513   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
   514   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not equal
   515                                         to the length specified in HIDP_CAPS
   516                                         structure for the given ReportType
   517   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
   518                                         for the given ReportType
   519 
   520 --*/
   521 
   522 NTSTATUS __stdcall
   523 HidP_SetData (
   524      HIDP_REPORT_TYPE ReportType,
   525     PHIDP_DATA DataList,
   526      PULONG DataLength,
   527      PHIDP_PREPARSED_DATA PreparsedData,
   528     PCHAR Report,
   529      ULONG ReportLength
   530     );
   531 /*++
   532 
   533 Routine Description:
   534 
   535     Please Note: Since usage value arrays deal with multiple fields for
   536                  for one usage value, they cannot be used with HidP_SetData
   537                  and HidP_GetData.  In this case,
   538                  HIDP_STATUS_IS_USAGE_VALUE_ARRAY will be returned.
   539 
   540 Parameters:
   541 
   542     ReportType  One of HidP_Input, HidP_Output, or HidP_Feature.
   543 
   544     DataList    Array of HIDP_DATA structures that contains the data values
   545                 that are to be set into the given report
   546 
   547     DataLength  As input, length in array elements of DataList.  As output,
   548                 contains the number of data elements set on successful
   549                 completion or an index into the DataList array to identify
   550                 the faulting HIDP_DATA value if an error code is returned.
   551 
   552     PreparasedData  Preparsed data structure returned by HIDCLASS
   553 
   554     Report      Buffer which to set the data into.
   555 
   556     ReportLength Length of Report...Report should be at least as long as the
   557                 value indicated in the HIDP_CAPS structure for the device and
   558                 the corresponding ReportType
   559 
   560 Return Value
   561     HidP_SetData returns the following error codes.  The report packet will
   562         have all the data set up until the HIDP_DATA structure that caused the
   563         error.  DataLength, in the error case, will return this problem index.
   564 
   565   HIDP_STATUS_SUCCESS                -- upon successful insertion of all data
   566                                         into the report packet.
   567   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
   568   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
   569   HIDP_STATUS_DATA_INDEX_NOT_FOUND   -- if a HIDP_DATA structure referenced a
   570                                         data index that does not exist for this
   571                                         device's ReportType
   572   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not equal
   573                                         to the length specified in HIDP_CAPS
   574                                         structure for the given ReportType
   575   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
   576                                         for the given ReportType
   577   HIDP_STATUS_IS_USAGE_VALUE_ARRAY   -- if one of the HIDP_DATA structures
   578                                         references a usage value array.
   579                                         DataLength will contain the index into
   580                                         the array that was invalid
   581   HIDP_STATUS_BUTTON_NOT_PRESSED     -- if a HIDP_DATA structure attempted
   582                                         to unset a button that was not already
   583                                         set in the Report
   584   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- a HIDP_DATA structure was found with
   585                                         a valid index value but is contained
   586                                         in a different report than the one
   587                                         currently being processed
   588   HIDP_STATUS_BUFFER_TOO_SMALL       -- if there are not enough entries in
   589                                         a given Main Array Item to report all
   590                                         buttons that have been requested to be
   591                                         set
   592 --*/
   593 
   594 NTSTATUS __stdcall
   595 HidP_GetData (
   596      HIDP_REPORT_TYPE ReportType,
   597     PHIDP_DATA DataList,
   598      PULONG DataLength,
   599      PHIDP_PREPARSED_DATA PreparsedData,
   600     PCHAR Report,
   601      ULONG ReportLength
   602     );
   603 /*++
   604 
   605 Routine Description:
   606 
   607     Please Note: For obvious reasons HidP_SetData and HidP_GetData will not
   608     access UsageValueArrays.
   609 
   610 Parameters:
   611     ReportType  One of HidP_Input, HidP_Output, or HidP_Feature.
   612 
   613     DataList    Array of HIDP_DATA structures that will receive the data
   614                 values that are set in the given report
   615 
   616     DataLength  As input, length in array elements of DataList.  As output,
   617                 contains the number of data elements that were successfully
   618                 set by HidP_GetData.  The maximum size necessary for DataList
   619                 can be determined by calling HidP_MaxDataListLength
   620 
   621     PreparasedData  Preparsed data structure returned by HIDCLASS
   622 
   623     Report      Buffer which to set the data into.
   624 
   625     ReportLength Length of Report...Report should be at least as long as the
   626                 value indicated in the HIDP_CAPS structure for the device and
   627                 the corresponding ReportType
   628 
   629 Return Value
   630     HidP_GetData returns the following error codes.
   631 
   632   HIDP_STATUS_SUCCESS                -- upon successful retrieval of all data
   633                                         from the report packet.
   634   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
   635   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
   636   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not equal
   637                                         to the length specified in HIDP_CAPS
   638                                         structure for the given ReportType
   639   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
   640                                         for the given ReportType
   641   HIDP_STATUS_BUFFER_TOO_SMALL       -- if there are not enough array entries in
   642                                         DataList to store all the indice values
   643                                         in the given report.  DataLength will
   644                                         contain the number of array entries
   645                                         required to hold all data
   646 --*/
   647 
   648 
   649 ULONG __stdcall
   650 HidP_MaxDataListLength (
   651     HIDP_REPORT_TYPE      ReportType,
   652     PHIDP_PREPARSED_DATA  PreparsedData
   653    );
   654 /*++
   655 Routine Description:
   656 
   657     This function returns the maximum length of HIDP_DATA elements that
   658     HidP_GetData could return for the given report type.
   659 
   660 Parameters:
   661 
   662     ReportType  One of HidP_Input, HidP_Output or HidP_Feature.
   663 
   664     PreparsedData    Preparsed data structure returned by HIDCLASS
   665 
   666 Return Value:
   667 
   668     The length of the data list array required for the HidP_GetData function
   669     call.  If an error occurs (either HIDP_STATUS_INVALID_REPORT_TYPE or
   670     HIDP_STATUS_INVALID_PREPARSED_DATA), this function returns 0.
   671 
   672 --*/
   673 
   674 #define HidP_SetButtons(Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle) \
   675         HidP_SetUsages(Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle)
   676 
   677 
   678 NTSTATUS __stdcall
   679 HidP_SetUsages (
   680     HIDP_REPORT_TYPE    ReportType,
   681     USAGE   UsagePage,
   682     USHORT  LinkCollection,
   683    PUSAGE  UsageList,
   684      PULONG  UsageLength,
   685     PHIDP_PREPARSED_DATA  PreparsedData,
   686    PCHAR   Report,
   687     ULONG   ReportLength 
   688    );
   689 /*++
   690 
   691 Routine Description:
   692     This function sets binary values (buttons) in a report.  Given an
   693     initialized packet of correct length, it modifies the report packet so that
   694     each element in the given list of usages has been set in the report packet.
   695     For example, in an output report with 5 LED's, each with a given usage,
   696     an application could turn on any subset of these lights by placing their
   697     usages in any order into the usage array (UsageList).  HidP_SetUsages would,
   698     in turn, set the appropriate bit or add the corresponding byte into the
   699     HID Main Array Item.
   700 
   701     A properly initialized Report packet is one of the correct byte length,
   702     and all zeros.
   703 
   704     NOTE: A packet that has already been set with a call to a HidP_Set routine
   705           can also be passed in.  This routine then sets processes the UsageList
   706           in the same fashion but verifies that the ReportID already set in
   707           Report matches the report ID for the given usages.
   708 
   709 Parameters:
   710     ReportType  One of HidP_Input, HidP_Output or HidP_Feature.
   711 
   712     UsagePage   All of the usages in the usage array, which HidP_SetUsages will
   713                 set in the report, refer to this same usage page.
   714                 If a client wishes to set usages in a report for multiple
   715                 usage pages then that client needs to make multiple calls to
   716                 HidP_SetUsages for each of the usage pages.
   717 
   718     UsageList   A usage array containing the usages that HidP_SetUsages will set in
   719                 the report packet.
   720 
   721     UsageLength The length of the given usage array in array elements.
   722                 The parser will set this value to the position in the usage
   723                 array where it stopped processing.  If successful, UsageLength
   724                 will be unchanged.  In any error condition, this parameter
   725                 reflects how many of the usages in the usage list have
   726                 actually been set by the parser.  This is useful for finding
   727                 the usage in the list which caused the error.
   728 
   729     PreparsedData The preparsed data recevied from HIDCLASS
   730 
   731     Report      The report packet.
   732 
   733     ReportLength   Length of the given report packet...Must be equal to the
   734                    value reported in the HIDP_CAPS structure for the device
   735                    and corresponding report type.
   736 
   737 Return Value
   738     HidP_SetUsages returns the following error codes.  On error, the report packet
   739     will be correct up until the usage element that caused the error.
   740 
   741   HIDP_STATUS_SUCCESS                -- upon successful insertion of all usages
   742                                         into the report packet.
   743   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
   744   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
   745   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
   746                                         equal to the length specified in
   747                                         the HIDP_CAPS structure for the given
   748                                         ReportType
   749   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
   750                                         for the given ReportType
   751   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- if a usage was found that exists in a
   752                                         different report.  If the report is
   753                                         zero-initialized on entry the first
   754                                         usage in the list will determine which
   755                                         report ID is used.  Otherwise, the
   756                                         parser will verify that usage matches
   757                                         the passed in report's ID
   758   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage does not exist for any
   759                                         report (no matter what the report ID)
   760                                         for the given report type.
   761   HIDP_STATUS_BUFFER_TOO_SMALL       -- if there are not enough entries in a
   762                                         given Main Array Item to list all of
   763                                         the given usages.  The caller needs
   764                                         to split his request into more than
   765                                         one call
   766 --*/
   767 
   768 #define HidP_UnsetButtons(Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle) \
   769         HidP_UnsetUsages(Rty, Up, Lco, ULi, ULe, Ppd, Rep, Rle)
   770 
   771 
   772 NTSTATUS __stdcall
   773 HidP_UnsetUsages (
   774     HIDP_REPORT_TYPE      ReportType,
   775     USAGE   UsagePage,
   776    USHORT  LinkCollection,
   777    PUSAGE  UsageList,
   778      PULONG  UsageLength,
   779     PHIDP_PREPARSED_DATA  PreparsedData,
   780    PCHAR   Report,
   781     ULONG   ReportLength
   782    );
   783 /*++
   784 
   785 Routine Description:
   786     This function unsets (turns off) binary values (buttons) in the report.  Given
   787     an initialized packet of correct length, it modifies the report packet so
   788     that each element in the given list of usages has been unset in the
   789     report packet.
   790 
   791     This function is the "undo" operation for SetUsages.  If the given usage
   792     is not already set in the Report, it will return an error code of
   793     HIDP_STATUS_BUTTON_NOT_PRESSED.  If the button is pressed, HidP_UnsetUsages
   794     will unset the appropriate bit or remove the corresponding index value from
   795     the HID Main Array Item.
   796 
   797     A properly initialized Report packet is one of the correct byte length,
   798     and all zeros..
   799 
   800     NOTE: A packet that has already been set with a call to a HidP_Set routine
   801           can also be passed in.  This routine then processes the UsageList
   802           in the same fashion but verifies that the ReportID already set in
   803           Report matches the report ID for the given usages.
   804 
   805 Parameters:
   806     ReportType  One of HidP_Input, HidP_Output or HidP_Feature.
   807 
   808     UsagePage   All of the usages in the usage array, which HidP_UnsetUsages will
   809                 unset in the report, refer to this same usage page.
   810                 If a client wishes to unset usages in a report for multiple
   811                 usage pages then that client needs to make multiple calls to
   812                 HidP_UnsetUsages for each of the usage pages.
   813 
   814     UsageList   A usage array containing the usages that HidP_UnsetUsages will
   815                 unset in the report packet.
   816 
   817     UsageLength The length of the given usage array in array elements.
   818                 The parser will set this value to the position in the usage
   819                 array where it stopped processing.  If successful, UsageLength
   820                 will be unchanged.  In any error condition, this parameter
   821                 reflects how many of the usages in the usage list have
   822                 actually been unset by the parser.  This is useful for finding
   823                 the usage in the list which caused the error.
   824 
   825     PreparsedData The preparsed data recevied from HIDCLASS
   826 
   827     Report      The report packet.
   828 
   829     ReportLength   Length of the given report packet...Must be equal to the
   830                    value reported in the HIDP_CAPS structure for the device
   831                    and corresponding report type.
   832 
   833 Return Value
   834     HidP_UnsetUsages returns the following error codes.  On error, the report
   835     packet will be correct up until the usage element that caused the error.
   836 
   837   HIDP_STATUS_SUCCESS                -- upon successful "unsetting" of all usages
   838                                         in the report packet.
   839   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
   840   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
   841   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
   842                                         equal to the length specified in
   843                                         the HIDP_CAPS structure for the given
   844                                         ReportType
   845   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
   846                                         for the given ReportType
   847   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- if a usage was found that exists in a
   848                                         different report.  If the report is
   849                                         zero-initialized on entry the first
   850                                         usage in the list will determine which
   851                                         report ID is used.  Otherwise, the
   852                                         parser will verify that usage matches
   853                                         the passed in report's ID
   854   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage does not exist for any
   855                                         report (no matter what the report ID)
   856                                         for the given report type.
   857   HIDP_STATUS_BUTTON_NOT_PRESSED     -- if a usage corresponds to a button that
   858                                         is not already set in the given report
   859 --*/
   860 
   861 #define HidP_GetButtons(Rty, UPa, LCo, ULi, ULe, Ppd, Rep, RLe) \
   862         HidP_GetUsages(Rty, UPa, LCo, ULi, ULe, Ppd, Rep, RLe)
   863 
   864 
   865 NTSTATUS __stdcall
   866 HidP_GetUsages (
   867     HIDP_REPORT_TYPE    ReportType,
   868     USAGE   UsagePage,
   869     USHORT  LinkCollection,
   870    PUSAGE UsageList,
   871        PULONG UsageLength,
   872     PHIDP_PREPARSED_DATA PreparsedData,
   873    PCHAR Report,
   874     ULONG   ReportLength
   875    );
   876 /*++
   877 
   878 Routine Description:
   879     This function returns the binary values (buttons) that are set in a HID
   880     report.  Given a report packet of correct length, it searches the report
   881     packet for each usage for the given usage page and returns them in the
   882     usage list.
   883 
   884 Parameters:
   885     ReportType One of HidP_Input, HidP_Output or HidP_Feature.
   886 
   887     UsagePage  All of the usages in the usage list, which HidP_GetUsages will
   888                retrieve in the report, refer to this same usage page.
   889                If the client wishes to get usages in a packet for multiple
   890                usage pages then that client needs to make multiple calls
   891                to HidP_GetUsages.
   892 
   893     LinkCollection  An optional value which can limit which usages are returned
   894                     in the UsageList to those usages that exist in a specific
   895                     LinkCollection.  A non-zero value indicates the index into
   896                     the HIDP_LINK_COLLECITON_NODE list returned by
   897                     HidP_GetLinkCollectionNodes of the link collection the
   898                     usage should belong to.  A value of 0 indicates this
   899                     should value be ignored.
   900 
   901     UsageList  The usage array that will contain all the usages found in
   902                the report packet.
   903 
   904     UsageLength The length of the given usage array in array elements.
   905                 On input, this value describes the length of the usage list.
   906                 On output, HidP_GetUsages sets this value to the number of
   907                 usages that was found.  Use HidP_MaxUsageListLength to
   908                 determine the maximum length needed to return all the usages
   909                 that a given report packet may contain.
   910 
   911     PreparsedData Preparsed data structure returned by HIDCLASS
   912 
   913     Report       The report packet.
   914 
   915     ReportLength  Length (in bytes) of the given report packet
   916 
   917 
   918 Return Value
   919     HidP_GetUsages returns the following error codes:
   920 
   921   HIDP_STATUS_SUCCESS                -- upon successfully retrieving all the
   922                                         usages from the report packet
   923   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
   924   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
   925   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
   926                                         equal to the length specified in
   927                                         the HIDP_CAPS structure for the given
   928                                         ReportType
   929   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
   930                                         for the given ReportType
   931   HIDP_STATUS_BUFFER_TOO_SMALL       -- if the UsageList is not big enough to
   932                                         hold all the usages found in the report
   933                                         packet.  If this is returned, the buffer
   934                                         will contain UsageLength number of
   935                                         usages.  Use HidP_MaxUsageListLength to
   936                                         find the maximum length needed
   937   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- if no usages were found but usages
   938                                         that match the UsagePage and
   939                                         LinkCollection specified could be found
   940                                         in a report with a different report ID
   941   HIDP_STATUS_USAGE_NOT_FOUND        -- if there are no usages in a reports for
   942                                         the device and ReportType that match the
   943                                         UsagePage and LinkCollection that were
   944                                         specified
   945 --*/
   946 
   947 #define HidP_GetButtonsEx(Rty, LCo, BLi, ULe, Ppd, Rep, RLe)  \
   948          HidP_GetUsagesEx(Rty, LCo, BLi, ULe, Ppd, Rep, RLe)
   949 
   950 NTSTATUS __stdcall
   951 HidP_GetUsagesEx (
   952         HIDP_REPORT_TYPE    ReportType,
   953         USHORT  LinkCollection, // Optional
   954     PUSAGE_AND_PAGE  ButtonList,
   955        ULONG * UsageLength,
   956      PHIDP_PREPARSED_DATA PreparsedData,
   957     reads_bytes_(ReportLength)   PCHAR   Report,
   958      ULONG  ReportLength
   959    );
   960 
   961 /*++
   962 
   963 Routine Description:
   964     This function returns the binary values (buttons) in a HID report.
   965     Given a report packet of correct length, it searches the report packet
   966     for all buttons and returns the UsagePage and Usage for each of the buttons
   967     it finds.
   968 
   969 Parameters:
   970     ReportType  One of HidP_Input, HidP_Output or HidP_Feature.
   971 
   972     LinkCollection  An optional value which can limit which usages are returned
   973                     in the ButtonList to those usages that exist in a specific
   974                     LinkCollection.  A non-zero value indicates the index into
   975                     the HIDP_LINK_COLLECITON_NODE list returned by
   976                     HidP_GetLinkCollectionNodes of the link collection the
   977                     usage should belong to.  A value of 0 indicates this
   978                     should value be ignored.
   979 
   980     ButtonList  An array of USAGE_AND_PAGE structures describing all the
   981                 buttons currently ``down'' in the device.
   982 
   983     UsageLength The length of the given array in terms of elements.
   984                 On input, this value describes the length of the list.  On
   985                 output, HidP_GetUsagesEx sets this value to the number of
   986                 usages that were found.  Use HidP_MaxUsageListLength to
   987                 determine the maximum length needed to return all the usages
   988                 that a given report packet may contain.
   989 
   990     PreparsedData Preparsed data returned by HIDCLASS
   991 
   992     Report       The report packet.
   993 
   994     ReportLength Length (in bytes) of the given report packet.
   995 
   996 
   997 Return Value
   998     HidP_GetUsagesEx returns the following error codes:
   999 
  1000   HIDP_STATUS_SUCCESS                -- upon successfully retrieving all the
  1001                                         usages from the report packet
  1002   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
  1003   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
  1004   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
  1005                                         equal to the length specified in
  1006                                         the HIDP_CAPS structure for the given
  1007                                         ReportType
  1008   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
  1009                                         for the given ReportType
  1010   HIDP_STATUS_BUFFER_TOO_SMALL       -- if ButtonList is not big enough to
  1011                                         hold all the usages found in the report
  1012                                         packet.  If this is returned, the buffer
  1013                                         will contain UsageLength number of
  1014                                         usages.  Use HidP_MaxUsageListLength to
  1015                                         find the maximum length needed
  1016   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- if no usages were found but usages
  1017                                         that match the specified LinkCollection
  1018                                         exist in report with a different report
  1019                                         ID.
  1020   HIDP_STATUS_USAGE_NOT_FOUND        -- if there are no usages in any reports that
  1021                                         match the LinkCollection parameter
  1022 --*/
  1023         
  1024 _IRQL_requires_max_(PASSIVE_LEVEL) 
  1025 ULONG __stdcall
  1026 HidP_MaxUsageListLength (
  1027     HIDP_REPORT_TYPE      ReportType,
  1028     USAGE                 UsagePage, // Optional
  1029     PHIDP_PREPARSED_DATA  PreparsedData
  1030    );
  1031 /*++
  1032 Routine Description:
  1033     This function returns the maximum number of usages that a call to
  1034     HidP_GetUsages or HidP_GetUsagesEx could return for a given HID report.
  1035     If calling for number of usages returned by HidP_GetUsagesEx, use 0 as
  1036     the UsagePage value.
  1037 
  1038 Parameters:
  1039     ReportType  One of HidP_Input, HidP_Output or HidP_Feature.
  1040 
  1041     UsagePage   Specifies the optional UsagePage to query for.  If 0, will
  1042                 return all the maximum number of usage values that could be
  1043                 returned for a given ReportType.   If non-zero, will return
  1044                 the maximum number of usages that would be returned for the
  1045                 ReportType with the given UsagePage.
  1046 
  1047     PreparsedData Preparsed data returned from HIDCLASS
  1048 
  1049 Return Value:
  1050     The length of the usage list array required for the HidP_GetUsages or
  1051     HidP_GetUsagesEx function call.  If an error occurs (such as
  1052     HIDP_STATUS_INVALID_REPORT_TYPE or HIDP_INVALID_PREPARSED_DATA, this
  1053     returns 0.
  1054 --*/
  1055 
  1056 
  1057 NTSTATUS __stdcall
  1058 HidP_SetUsageValue (
  1059      HIDP_REPORT_TYPE ReportType,
  1060      USAGE UsagePage,
  1061      USHORT LinkCollection,
  1062      USAGE Usage,
  1063      ULONG UsageValue,
  1064      PHIDP_PREPARSED_DATA PreparsedData,
  1065     updates_bytes_(ReportLength) PCHAR Report,
  1066      ULONG ReportLength
  1067     );
  1068 /*++
  1069 Description:
  1070     HidP_SetUsageValue inserts a value into the HID Report Packet in the field
  1071     corresponding to the given usage page and usage.  HidP_SetUsageValue
  1072     casts this value to the appropriate bit length.  If a report packet
  1073     contains two different fields with the same Usage and UsagePage,
  1074     they can be distinguished with the optional LinkCollection field value.
  1075     Using this function sets the raw value into the report packet with
  1076     no checking done as to whether it actually falls within the logical
  1077     minimum/logical maximum range.  Use HidP_SetScaledUsageValue for this...
  1078 
  1079     NOTE: Although the UsageValue parameter is a ULONG, any casting that is
  1080           done will preserve or sign-extend the value.  The value being set
  1081           should be considered a LONG value and will be treated as such by
  1082           this function.
  1083 
  1084 Parameters:
  1085 
  1086     ReportType  One of HidP_Output or HidP_Feature.
  1087 
  1088     UsagePage   The usage page to which the given usage refers.
  1089 
  1090     LinkCollection  (Optional)  This value can be used to differentiate
  1091                                 between two fields that may have the same
  1092                                 UsagePage and Usage but exist in different
  1093                                 collections.  If the link collection value
  1094                                 is zero, this function will set the first field
  1095                                 it finds that matches the usage page and
  1096                                 usage.
  1097 
  1098     Usage       The usage whose value HidP_SetUsageValue will set.
  1099 
  1100     UsageValue  The raw value to set in the report buffer.  This value must be within
  1101                 the logical range or if a NULL value this value should be the
  1102                 most negative value that can be represented by the number of bits
  1103                 for this field.
  1104 
  1105     PreparsedData The preparsed data returned for HIDCLASS
  1106 
  1107     Report      The report packet.
  1108 
  1109     ReportLength Length (in bytes) of the given report packet.
  1110 
  1111 
  1112 Return Value:
  1113     HidP_SetUsageValue returns the following error codes:
  1114 
  1115   HIDP_STATUS_SUCCESS                -- upon successfully setting the value
  1116                                         in the report packet
  1117   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
  1118   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
  1119   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
  1120                                         equal to the length specified in
  1121                                         the HIDP_CAPS structure for the given
  1122                                         ReportType
  1123   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
  1124                                         for the given ReportType
  1125   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- the specified usage page, usage and
  1126                                         link collection exist but exists in
  1127                                         a report with a different report ID
  1128                                         than the report being passed in.  To
  1129                                         set this value, call HidP_SetUsageValue
  1130                                         again with a zero-initizialed report
  1131                                         packet
  1132   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage page, usage, and link
  1133                                         collection combination does not exist
  1134                                         in any reports for this ReportType
  1135 --*/
  1136 
  1137 NTSTATUS __stdcall
  1138 HidP_SetScaledUsageValue (
  1139      HIDP_REPORT_TYPE ReportType,
  1140      USAGE UsagePage,
  1141      USHORT LinkCollection,
  1142      USAGE Usage,
  1143      LONG UsageValue,
  1144      PHIDP_PREPARSED_DATA PreparsedData,
  1145     updates_bytes_(ReportLength) PCHAR Report,
  1146      ULONG ReportLength
  1147     );
  1148 
  1149 /*++
  1150 Description:
  1151     HidP_SetScaledUsageValue inserts the UsageValue into the HID report packet
  1152     in the field corresponding to the given usage page and usage.  If a report
  1153     packet contains two different fields with the same Usage and UsagePage,
  1154     they can be distinguished with the optional LinkCollection field value.
  1155 
  1156     If the specified field has a defined physical range, this function converts
  1157     the physical value specified to the corresponding logical value for the
  1158     report.  If a physical value does not exist, the function will verify that
  1159     the value specified falls within the logical range and set according.
  1160 
  1161     If the range checking fails but the field has NULL values, the function will
  1162     set the field to the defined NULL value (most negative number possible) and
  1163     return HIDP_STATUS_NULL.  In other words, use this function to set NULL
  1164     values for a given field by passing in a value that falls outside the
  1165     physical range if it is defined or the logical range otherwise.
  1166 
  1167     If the field does not support NULL values, an out of range error will be
  1168     returned instead.
  1169 
  1170 Parameters:
  1171 
  1172     ReportType  One of HidP_Output or HidP_Feature.
  1173 
  1174     UsagePage   The usage page to which the given usage refers.
  1175 
  1176     LinkCollection  (Optional)  This value can be used to differentiate
  1177                                 between two fields that may have the same
  1178                                 UsagePage and Usage but exist in different
  1179                                 collections.  If the link collection value
  1180                                 is zero, this function will set the first field
  1181                                 it finds that matches the usage page and
  1182                                 usage.
  1183 
  1184     Usage       The usage whose value HidP_SetScaledUsageValue will set.
  1185 
  1186     UsageValue  The value to set in the report buffer.  See the routine
  1187                 description above for the different interpretations of this
  1188                 value
  1189 
  1190     PreparsedData The preparsed data returned from HIDCLASS
  1191 
  1192     Report      The report packet.
  1193 
  1194     ReportLength Length (in bytes) of the given report packet.
  1195 
  1196 
  1197 Return Value:
  1198    HidP_SetScaledUsageValue returns the following error codes:
  1199 
  1200   HIDP_STATUS_SUCCESS                -- upon successfully setting the value
  1201                                         in the report packet
  1202   HIDP_STATUS_NULL                   -- upon successfully setting the value
  1203                                         in the report packet as a NULL value
  1204   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
  1205   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
  1206   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
  1207                                         equal to the length specified in
  1208                                         the HIDP_CAPS structure for the given
  1209                                         ReportType
  1210   HIDP_STATUS_VALUEOF_RANGE     -- if the value specified failed to fall
  1211                                         within the physical range if it exists
  1212                                         or within the logical range otherwise
  1213                                         and the field specified by the usage
  1214                                         does not allow NULL values
  1215   HIDP_STATUS_BAD_LOG_PHY_VALUES     -- if the field has a physical range but
  1216                                         either the logical range is invalid
  1217                                         (max <= min) or the physical range is
  1218                                         invalid
  1219   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- the specified usage page, usage and
  1220                                         link collection exist but exists in
  1221                                         a report with a different report ID
  1222                                         than the report being passed in.  To
  1223                                         set this value, call
  1224                                         HidP_SetScaledUsageValue again with
  1225                                         a zero-initialized report packet
  1226   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage page, usage, and link
  1227                                         collection combination does not exist
  1228                                         in any reports for this ReportType
  1229 --*/
  1230 
  1231 NTSTATUS __stdcall
  1232 HidP_SetUsageValueArray (
  1233      HIDP_REPORT_TYPE ReportType,
  1234      USAGE UsagePage,
  1235      USHORT LinkCollection,
  1236      USAGE Usage,
  1237     reads_bytes_(UsageValueByteLength) PCHAR UsageValue,
  1238      USHORT UsageValueByteLength,
  1239      PHIDP_PREPARSED_DATA PreparsedData,
  1240     updates_bytes_(ReportLength) PCHAR Report,
  1241      ULONG ReportLength
  1242     );
  1243 
  1244 /*++
  1245 Routine Descripton:
  1246     A usage value array occurs when the last usage in the list of usages
  1247     describing a main item must be repeated because there are less usages defined
  1248     than there are report counts declared for the given main item.  In this case
  1249     a single value cap is allocated for that usage and the report count of that
  1250     value cap is set to reflect the number of fields to which that usage refers.
  1251 
  1252     HidP_SetUsageValueArray sets the raw bits for that usage which spans
  1253     more than one field in a report.
  1254 
  1255     NOTE: This function currently does not support value arrays where the
  1256           ReportSize for each of the fields in the array is not a multiple
  1257           of 8 bits.
  1258 
  1259           The UsageValue buffer should have the values set as they would appear
  1260           in the report buffer.  If this function supported non 8-bit multiples
  1261           for the ReportSize then caller should format the input buffer so that
  1262           each new value begins at the bit immediately following the last bit
  1263           of the previous value
  1264 
  1265 Parameters:
  1266 
  1267     ReportType  One of HidP_Output or HidP_Feature.
  1268 
  1269     UsagePage   The usage page to which the given usage refers.
  1270 
  1271     LinkCollection  (Optional)  This value can be used to differentiate
  1272                                 between two fields that may have the same
  1273                                 UsagePage and Usage but exist in different
  1274                                 collections.  If the link collection value
  1275                                 is zero, this function will set the first field
  1276                                 it finds that matches the usage page and
  1277                                 usage.
  1278 
  1279     Usage       The usage whose value array HidP_SetUsageValueArray will set.
  1280 
  1281     UsageValue  The buffer with the values to set into the value array.
  1282                 The number of BITS required is found by multiplying the
  1283                 BitSize and ReportCount fields of the Value Cap for this
  1284                 control.  The least significant bit of this control found in the
  1285                 given report will be placed in the least significan bit location
  1286                 of the array given (little-endian format), regardless of whether
  1287                 or not the field is byte alligned or if the BitSize is a multiple
  1288                 of sizeof (CHAR).
  1289 
  1290                 See the above note for current implementation limitations.
  1291 
  1292     UsageValueByteLength  Length of the UsageValue buffer (in bytes)
  1293 
  1294     PreparsedData The preparsed data returned from HIDCLASS
  1295 
  1296     Report      The report packet.
  1297 
  1298     ReportLength Length (in bytes) of the given report packet.
  1299 
  1300 
  1301 Return Value:
  1302   HIDP_STATUS_SUCCESS                -- upon successfully setting the value
  1303                                         array in the report packet
  1304   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
  1305   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
  1306   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
  1307                                         equal to the length specified in
  1308                                         the HIDP_CAPS structure for the given
  1309                                         ReportType
  1310   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
  1311                                         for the given ReportType
  1312   HIDP_STATUS_NOT_VALUE_ARRAY        -- if the control specified is not a
  1313                                         value array -- a value array will have
  1314                                         a ReportCount field in the
  1315                                         HIDP_VALUE_CAPS structure that is > 1
  1316                                         Use HidP_SetUsageValue instead
  1317   HIDP_STATUS_BUFFER_TOO_SMALL       -- if the size of the passed in buffer with
  1318                                         the values to set is too small (ie. has
  1319                                         fewer values than the number of fields in
  1320                                         the array
  1321   HIDP_STATUS_NOT_IMPLEMENTED        -- if the usage value array has field sizes
  1322                                         that are not multiples of 8 bits, this
  1323                                         error code is returned since the function
  1324                                         currently does not handle setting into
  1325                                         such arrays.
  1326   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- the specified usage page, usage and
  1327                                         link collection exist but exists in
  1328                                         a report with a different report ID
  1329                                         than the report being passed in.  To
  1330                                         set this value, call
  1331                                         HidP_SetUsageValueArray again with
  1332                                         a zero-initialized report packet
  1333   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage page, usage, and link
  1334                                         collection combination does not exist
  1335                                         in any reports for this ReportType
  1336 --*/
  1337 
  1338 
  1339 NTSTATUS __stdcall
  1340 HidP_GetUsageValue (
  1341      HIDP_REPORT_TYPE ReportType,
  1342      USAGE UsagePage,
  1343      USHORT LinkCollection,
  1344      USAGE Usage,
  1345      PULONG UsageValue,
  1346      PHIDP_PREPARSED_DATA PreparsedData,
  1347     reads_bytes_(ReportLength) PCHAR Report,
  1348      ULONG ReportLength
  1349     );
  1350 
  1351 /*
  1352 Description
  1353     HidP_GetUsageValue retrieves the value from the HID Report for the usage
  1354     specified by the combination of usage page, usage and link collection.
  1355     If a report packet contains two different fields with the same
  1356     Usage and UsagePage, they can be distinguished with the optional
  1357     LinkCollection field value.
  1358 
  1359 Parameters:
  1360 
  1361     ReportType  One of HidP_Input or HidP_Feature.
  1362 
  1363     UsagePage   The usage page to which the given usage refers.
  1364 
  1365     LinkCollection  (Optional)  This value can be used to differentiate
  1366                                 between two fields that may have the same
  1367                                 UsagePage and Usage but exist in different
  1368                                 collections.  If the link collection value
  1369                                 is zero, this function will set the first field
  1370                                 it finds that matches the usage page and
  1371                                 usage.
  1372 
  1373     Usage       The usage whose value HidP_GetUsageValue will retrieve
  1374 
  1375     UsageValue  The raw value that is set for the specified field in the report
  1376                 buffer. This value will either fall within the logical range
  1377                 or if NULL values are allowed, a number outside the range to
  1378                 indicate a NULL
  1379 
  1380     PreparsedData The preparsed data returned for HIDCLASS
  1381 
  1382     Report      The report packet.
  1383 
  1384     ReportLength Length (in bytes) of the given report packet.
  1385 
  1386 
  1387 Return Value:
  1388     HidP_GetUsageValue returns the following error codes:
  1389 
  1390   HIDP_STATUS_SUCCESS                -- upon successfully retrieving the value
  1391                                         from the report packet
  1392   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
  1393   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
  1394   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
  1395                                         equal to the length specified in
  1396                                         the HIDP_CAPS structure for the given
  1397                                         ReportType
  1398   HIDP_STATUS_REPORT_DOES_NOT_EXIST  -- if there are no reports on this device
  1399                                         for the given ReportType
  1400   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- the specified usage page, usage and
  1401                                         link collection exist but exists in
  1402                                         a report with a different report ID
  1403                                         than the report being passed in.  To
  1404                                         set this value, call HidP_GetUsageValue
  1405                                         again with a different report packet
  1406   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage page, usage, and link
  1407                                         collection combination does not exist
  1408                                         in any reports for this ReportType
  1409 --*/
  1410 
  1411 
  1412 NTSTATUS __stdcall
  1413 HidP_GetScaledUsageValue (
  1414      HIDP_REPORT_TYPE ReportType,
  1415      USAGE UsagePage,
  1416      USHORT LinkCollection,
  1417      USAGE Usage,
  1418      PLONG UsageValue,
  1419      PHIDP_PREPARSED_DATA PreparsedData,
  1420     reads_bytes_(ReportLength) PCHAR Report,
  1421      ULONG ReportLength
  1422     );
  1423 
  1424 /*++
  1425 Description
  1426     HidP_GetScaledUsageValue retrieves a UsageValue from the HID report packet
  1427     in the field corresponding to the given usage page and usage.  If a report
  1428     packet contains two different fields with the same Usage and UsagePage,
  1429     they can be distinguished with the optional LinkCollection field value.
  1430 
  1431     If the specified field has a defined physical range, this function converts
  1432     the logical value that exists in the report packet to the corresponding
  1433     physical value.  If a physical range does not exist, the function will
  1434     return the logical value.  This function will check to verify that the
  1435     logical value in the report falls within the declared logical range.
  1436 
  1437     When doing the conversion between logical and physical values, this
  1438     function assumes a linear extrapolation between the physical max/min and
  1439     the logical max/min. (Where logical is the values reported by the device
  1440     and physical is the value returned by this function).  If the data field
  1441     size is less than 32 bits, then HidP_GetScaledUsageValue will sign extend
  1442     the value to 32 bits.
  1443 
  1444     If the range checking fails but the field has NULL values, the function
  1445     will set UsageValue to 0 and return HIDP_STATUS_NULL.  Otherwise, it
  1446     returns a HIDP_STATUSOF_RANGE error.
  1447 
  1448 Parameters:
  1449 
  1450     ReportType  One of HidP_Output or HidP_Feature.
  1451 
  1452     UsagePage   The usage page to which the given usage refers.
  1453 
  1454     LinkCollection  (Optional)  This value can be used to differentiate
  1455                                 between two fields that may have the same
  1456                                 UsagePage and Usage but exist in different
  1457                                 collections.  If the link collection value
  1458                                 is zero, this function will retrieve the first
  1459                                 field it finds that matches the usage page
  1460                                 and usage.
  1461 
  1462     Usage       The usage whose value HidP_GetScaledUsageValue will retrieve
  1463 
  1464     UsageValue  The value retrieved from the report buffer.  See the routine
  1465                 description above for the different interpretations of this
  1466                 value
  1467 
  1468     PreparsedData The preparsed data returned from HIDCLASS
  1469 
  1470     Report      The report packet.
  1471 
  1472     ReportLength Length (in bytes) of the given report packet.
  1473 
  1474 
  1475 Return Value:
  1476    HidP_GetScaledUsageValue returns the following error codes:
  1477 
  1478   HIDP_STATUS_SUCCESS                -- upon successfully retrieving the value
  1479                                         from the report packet
  1480   HIDP_STATUS_NULL                   -- if the report packet had a NULL value
  1481                                         set
  1482   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
  1483   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
  1484   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
  1485                                         equal to the length specified in
  1486                                         the HIDP_CAPS structure for the given
  1487                                         ReportType
  1488   HIDP_STATUS_VALUEOF_RANGE     -- if the value retrieved from the packet
  1489                                         falls outside the logical range and
  1490                                         the field does not support NULL values
  1491   HIDP_STATUS_BAD_LOG_PHY_VALUES     -- if the field has a physical range but
  1492                                         either the logical range is invalid
  1493                                         (max <= min) or the physical range is
  1494                                         invalid
  1495   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- the specified usage page, usage and
  1496                                         link collection exist but exists in
  1497                                         a report with a different report ID
  1498                                         than the report being passed in.  To
  1499                                         set this value, call
  1500                                         HidP_GetScaledUsageValue with a
  1501                                         different report packet
  1502   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage page, usage, and link
  1503                                         collection combination does not exist
  1504                                         in any reports for this ReportType
  1505 --*/
  1506 
  1507 NTSTATUS __stdcall
  1508 HidP_GetUsageValueArray (
  1509      HIDP_REPORT_TYPE ReportType,
  1510      USAGE UsagePage,
  1511      USHORT LinkCollection,
  1512      USAGE Usage,
  1513     updates_bytes_(UsageValueByteLength) PCHAR UsageValue,
  1514      USHORT UsageValueByteLength,
  1515      PHIDP_PREPARSED_DATA PreparsedData,
  1516     reads_bytes_(ReportLength) PCHAR Report,
  1517      ULONG ReportLength
  1518     );
  1519 
  1520 /*++
  1521 Routine Descripton:
  1522     A usage value array occurs when the last usage in the list of usages
  1523     describing a main item must be repeated because there are less usages defined
  1524     than there are report counts declared for the given main item.  In this case
  1525     a single value cap is allocated for that usage and the report count of that
  1526     value cap is set to reflect the number of fields to which that usage refers.
  1527 
  1528     HidP_GetUsageValueArray returns the raw bits for that usage which spans
  1529     more than one field in a report.
  1530 
  1531     NOTE: This function currently does not support value arrays where the
  1532           ReportSize for each of the fields in the array is not a multiple
  1533           of 8 bits.
  1534 
  1535           The UsageValue buffer will have the raw values as they are set
  1536           in the report packet.
  1537 
  1538 Parameters:
  1539 
  1540     ReportType  One of HidP_Input, HidP_Output or HidP_Feature.
  1541 
  1542     UsagePage   The usage page to which the given usage refers.
  1543 
  1544     LinkCollection  (Optional)  This value can be used to differentiate
  1545                                 between two fields that may have the same
  1546                                 UsagePage and Usage but exist in different
  1547                                 collections.  If the link collection value
  1548                                 is zero, this function will set the first field
  1549                                 it finds that matches the usage page and
  1550                                 usage.
  1551 
  1552    Usage       The usage whose value HidP_GetUsageValueArray will retreive.
  1553 
  1554    UsageValue  A pointer to an array of characters where the value will be
  1555                placed.  The number of BITS required is found by multiplying the
  1556                BitSize and ReportCount fields of the Value Cap for this
  1557                control.  The least significant bit of this control found in the
  1558                given report will be placed in the least significant bit location
  1559                of the buffer (little-endian format), regardless of whether
  1560                or not the field is byte aligned or if the BitSize is a multiple
  1561                of sizeof (CHAR).
  1562 
  1563                See note above about current implementation limitations
  1564 
  1565    UsageValueByteLength
  1566                the length of the given UsageValue buffer.
  1567 
  1568    PreparsedData The preparsed data returned by the HIDCLASS
  1569 
  1570    Report      The report packet.
  1571 
  1572    ReportLength   Length of the given report packet.
  1573 
  1574 Return Value:
  1575 
  1576   HIDP_STATUS_SUCCESS                -- upon successfully retrieving the value
  1577                                         from the report packet
  1578   HIDP_STATUS_INVALID_REPORT_TYPE    -- if ReportType is not valid.
  1579   HIDP_STATUS_INVALID_PREPARSED_DATA -- if PreparsedData is not valid
  1580   HIDP_STATUS_INVALID_REPORT_LENGTH  -- the length of the report packet is not
  1581                                         equal to the length specified in
  1582                                         the HIDP_CAPS structure for the given
  1583                                         ReportType
  1584   HIDP_STATUS_NOT_VALUE_ARRAY        -- if the control specified is not a
  1585                                         value array -- a value array will have
  1586                                         a ReportCount field in the
  1587                                         HIDP_VALUE_CAPS structure that is > 1
  1588                                         Use HidP_GetUsageValue instead
  1589   HIDP_STATUS_BUFFER_TOO_SMALL       -- if the size of the passed in buffer in
  1590                                         which to return the array is too small
  1591                                         (ie. has fewer values than the number of
  1592                                         fields in the array
  1593   HIDP_STATUS_NOT_IMPLEMENTED        -- if the usage value array has field sizes
  1594                                         that are not multiples of 8 bits, this
  1595                                         error code is returned since the function
  1596                                         currently does not handle getting values
  1597                                         from such arrays.
  1598   HIDP_STATUS_INCOMPATIBLE_REPORT_ID -- the specified usage page, usage and
  1599                                         link collection exist but exists in
  1600                                         a report with a different report ID
  1601                                         than the report being passed in.  To
  1602                                         set this value, call
  1603                                         HidP_GetUsageValueArray with a
  1604                                         different report packet
  1605   HIDP_STATUS_USAGE_NOT_FOUND        -- if the usage page, usage, and link
  1606                                         collection combination does not exist
  1607                                         in any reports for this ReportType
  1608 --*/
  1609 
  1610 
  1611 _IRQL_requires_max_(PASSIVE_LEVEL)
  1612 NTSTATUS __stdcall
  1613 HidP_UsageListDifference (
  1614    reads_(UsageListLength) PUSAGE  PreviousUsageList,
  1615    reads_(UsageListLength) PUSAGE  CurrentUsageList,
  1616    writes_(UsageListLength) PUSAGE  BreakUsageList,
  1617    writes_(UsageListLength) PUSAGE  MakeUsageList,
  1618     ULONG    UsageListLength
  1619     );
  1620 /*++
  1621 Routine Description:
  1622     This function will return the difference between a two lists of usages
  1623     (as might be returned from HidP_GetUsages),  In other words, it will return
  1624     return a list of usages that are in the current list but not the previous
  1625     list as well as a list of usages that are in the previous list but not
  1626     the current list.
  1627 
  1628 Parameters:
  1629 
  1630     PreviousUsageList   The list of usages before.
  1631     CurrentUsageList    The list of usages now.
  1632     BreakUsageList      Previous - Current.
  1633     MakeUsageList       Current - Previous.
  1634     UsageListLength     Represents the length of the usage lists in array
  1635                         elements.  If comparing two lists with a differing
  1636                         number of array elements, this value should be
  1637                         the size of the larger of the two lists.  Any
  1638                         zero found with a list indicates an early termination
  1639                         of the list and any usages found after the first zero
  1640                         will be ignored.
  1641 --*/
  1642 
  1643 
  1644 _IRQL_requires_max_(PASSIVE_LEVEL)
  1645 NTSTATUS __stdcall
  1646 HidP_UsageAndPageListDifference (
  1647    reads_(UsageListLength) PUSAGE_AND_PAGE PreviousUsageList,
  1648    reads_(UsageListLength) PUSAGE_AND_PAGE CurrentUsageList,
  1649    writes_(UsageListLength) PUSAGE_AND_PAGE BreakUsageList,
  1650    writes_(UsageListLength) PUSAGE_AND_PAGE MakeUsageList,
  1651     ULONG           UsageListLength
  1652    );
  1653 
  1654 //
  1655 // Produce Make or Break Codes
  1656 //
  1657 typedef enum _HIDP_KEYBOARD_DIRECTION {
  1658     HidP_Keyboard_Break,
  1659     HidP_Keyboard_Make
  1660 } HIDP_KEYBOARD_DIRECTION;
  1661 
  1662 //
  1663 // A bitmap of the current shift state of the keyboard when using the
  1664 // below keyboard usages to i8042 translation function.
  1665 //
  1666 typedef struct _HIDP_KEYBOARD_MODIFIER_STATE {
  1667    union {
  1668       struct {
  1669          ULONG LeftControl: 1;
  1670          ULONG LeftShift: 1;
  1671          ULONG LeftAlt: 1;
  1672          ULONG LeftGUI: 1;
  1673          ULONG RightControl: 1;
  1674          ULONG RightShift: 1;
  1675          ULONG RightAlt: 1;
  1676          ULONG RigthGUI: 1;
  1677          ULONG CapsLock: 1;
  1678          ULONG ScollLock: 1;
  1679          ULONG NumLock: 1;
  1680          ULONG Reserved: 21;
  1681       };
  1682       ULONG ul;
  1683    };
  1684 
  1685 } HIDP_KEYBOARD_MODIFIER_STATE, * PHIDP_KEYBOARD_MODIFIER_STATE;
  1686 
  1687 //
  1688 // A call back function to give the i8042 scan codes to the caller of
  1689 // the below translation function.
  1690 //
  1691 typedef BOOLEAN (* PHIDP_INSERT_SCANCODES) (
  1692                    PVOID Context,  // Some caller supplied context.
  1693                   reads_bytes_(Length) PCHAR NewScanCodes, // A list of i8042 scan codes.
  1694                    ULONG Length // the length of the scan codes.
  1695                   );
  1696 
  1697 
  1698 NTSTATUS __stdcall
  1699 HidP_TranslateUsageAndPagesToI8042ScanCodes (
  1700     reads_(UsageListLength)     PUSAGE_AND_PAGE ChangedUsageList,
  1701          ULONG                         UsageListLength,
  1702          HIDP_KEYBOARD_DIRECTION       KeyAction,
  1703       PHIDP_KEYBOARD_MODIFIER_STATE ModifierState,
  1704          PHIDP_INSERT_SCANCODES        InsertCodesProcedure,
  1705      PVOID                         InsertCodesContext
  1706     );
  1707 /*++
  1708 Routine Description:
  1709 Parameters:
  1710 --*/
  1711 
  1712 NTSTATUS __stdcall
  1713 HidP_TranslateUsagesToI8042ScanCodes (
  1714     reads_(UsageListLength)     PUSAGE ChangedUsageList,
  1715          ULONG                         UsageListLength,
  1716          HIDP_KEYBOARD_DIRECTION       KeyAction,
  1717       PHIDP_KEYBOARD_MODIFIER_STATE ModifierState,
  1718          PHIDP_INSERT_SCANCODES        InsertCodesProcedure,
  1719      PVOID                         InsertCodesContext
  1720     );
  1721 /*++
  1722 Routine Description:
  1723 Parameters:
  1724 --*/
  1725 
  1726 
  1727 
  1728 //
  1729 // Define NT Status codes with Facility Code of FACILITY_HID_ERROR_CODE
  1730 //
  1731 
  1732 // FACILITY_HID_ERROR_CODE defined in ntstatus.h
  1733 #ifndef FACILITY_HID_ERROR_CODE
  1734 #define FACILITY_HID_ERROR_CODE 0x11
  1735 #endif
  1736 
  1737 #define HIDP_ERROR_CODES(SEV, CODE) \
  1738         ((NTSTATUS) (((SEV) << 28) | (FACILITY_HID_ERROR_CODE << 16) | (CODE)))
  1739 
  1740 #define HIDP_STATUS_SUCCESS                  (HIDP_ERROR_CODES(0x0,0))
  1741 #define HIDP_STATUS_NULL                     (HIDP_ERROR_CODES(0x8,1))
  1742 #define HIDP_STATUS_INVALID_PREPARSED_DATA   (HIDP_ERROR_CODES(0xC,1))
  1743 #define HIDP_STATUS_INVALID_REPORT_TYPE      (HIDP_ERROR_CODES(0xC,2))
  1744 #define HIDP_STATUS_INVALID_REPORT_LENGTH    (HIDP_ERROR_CODES(0xC,3))
  1745 #define HIDP_STATUS_USAGE_NOT_FOUND          (HIDP_ERROR_CODES(0xC,4))
  1746 #define HIDP_STATUS_VALUEOF_RANGE       (HIDP_ERROR_CODES(0xC,5))
  1747 #define HIDP_STATUS_BAD_LOG_PHY_VALUES       (HIDP_ERROR_CODES(0xC,6))
  1748 #define HIDP_STATUS_BUFFER_TOO_SMALL         (HIDP_ERROR_CODES(0xC,7))
  1749 #define HIDP_STATUS_INTERNAL_ERROR           (HIDP_ERROR_CODES(0xC,8))
  1750 #define HIDP_STATUS_I8042_TRANS_UNKNOWN      (HIDP_ERROR_CODES(0xC,9))
  1751 #define HIDP_STATUS_INCOMPATIBLE_REPORT_ID   (HIDP_ERROR_CODES(0xC,0xA))
  1752 #define HIDP_STATUS_NOT_VALUE_ARRAY          (HIDP_ERROR_CODES(0xC,0xB))
  1753 #define HIDP_STATUS_IS_VALUE_ARRAY           (HIDP_ERROR_CODES(0xC,0xC))
  1754 #define HIDP_STATUS_DATA_INDEX_NOT_FOUND     (HIDP_ERROR_CODES(0xC,0xD))
  1755 #define HIDP_STATUS_DATA_INDEXOF_RANGE  (HIDP_ERROR_CODES(0xC,0xE))
  1756 #define HIDP_STATUS_BUTTON_NOT_PRESSED       (HIDP_ERROR_CODES(0xC,0xF))
  1757 #define HIDP_STATUS_REPORT_DOES_NOT_EXIST    (HIDP_ERROR_CODES(0xC,0x10))
  1758 #define HIDP_STATUS_NOT_IMPLEMENTED          (HIDP_ERROR_CODES(0xC,0x20))
  1759 
  1760 //
  1761 // We blundered this status code.
  1762 //
  1763 #define HIDP_STATUS_I8242_TRANS_UNKNOWN HIDP_STATUS_I8042_TRANS_UNKNOWN
  1764 
  1765 /*++
  1766 
  1767 Copyright (c) Microsoft Corporation. All rights reserved.
  1768 
  1769 Module Name:
  1770 
  1771     HIDSDI.H
  1772 
  1773 Abstract:
  1774 
  1775     This module contains the PUBLIC definitions for the
  1776     code that implements the HID dll.
  1777 
  1778 Environment:
  1779 
  1780     Kernel & user mode
  1781 
  1782 --*/
  1783 
  1784 
  1785 
  1786 
  1787 typedef struct _HIDD_CONFIGURATION {
  1788     PVOID    cookie;
  1789     ULONG    size;
  1790     ULONG    RingBufferSize;
  1791 } HIDD_CONFIGURATION, *PHIDD_CONFIGURATION;
  1792 
  1793 typedef struct _HIDD_ATTRIBUTES {
  1794     ULONG   Size; // = sizeof (struct _HIDD_ATTRIBUTES)
  1795 
  1796     //
  1797     // Vendor ids of this hid device
  1798     //
  1799     USHORT  VendorID;
  1800     USHORT  ProductID;
  1801     USHORT  VersionNumber;
  1802 
  1803     //
  1804     // Additional fields will be added to the end of this structure.
  1805     //
  1806 } HIDD_ATTRIBUTES, *PHIDD_ATTRIBUTES;
  1807 
  1808 
  1809 BOOLEAN __stdcall
  1810 HidD_GetAttributes (
  1811       HANDLE              HidDeviceObject,
  1812      PHIDD_ATTRIBUTES    Attributes
  1813     );
  1814 /*++
  1815 Routine Description:
  1816     Fill in the given HIDD_ATTRIBUTES structure with the attributes of the
  1817     given hid device.
  1818 
  1819 --*/
  1820 
  1821 
  1822 void __stdcall
  1823 HidD_GetHidGuid (
  1824      LPGUID   HidGuid
  1825    );
  1826 
  1827 
  1828 BOOLEAN __stdcall
  1829 HidD_GetPreparsedData (
  1830       HANDLE                  HidDeviceObject,
  1831     PHIDP_PREPARSED_DATA  * PreparsedData
  1832    );
  1833 /*++
  1834 Routine Description:
  1835     Given a handle to a valid Hid Class Device Object, retrieve the preparsed
  1836     data for the device.  This routine will allocate the appropriately 
  1837     sized buffer to hold this preparsed data.  It is up to client to call
  1838     HidP_FreePreparsedData to free the memory allocated to this structure when
  1839     it is no longer needed.
  1840 
  1841 Arguments:
  1842    HidDeviceObject A handle to a Hid Device that the client obtains using 
  1843                    a call to CreateFile on a valid Hid device string name.
  1844                    The string name can be obtained using standard PnP calls.
  1845 
  1846    PreparsedData   An opaque data structure used by other functions in this 
  1847                    library to retrieve information about a given device.
  1848 
  1849 Return Value:
  1850    TRUE if successful.
  1851    FALSE otherwise  -- Use GetLastError() to get extended error information
  1852 --*/
  1853 BOOLEAN __stdcall
  1854 HidD_FreePreparsedData (
  1855     __drv_freesMem(Mem) PHIDP_PREPARSED_DATA PreparsedData
  1856    );
  1857 
  1858 BOOLEAN __stdcall
  1859 HidD_FlushQueue (
  1860        HANDLE                HidDeviceObject
  1861    );
  1862 /*++
  1863 Routine Description:
  1864     Flush the input queue for the given HID device.
  1865 
  1866 Arguments:
  1867    HidDeviceObject A handle to a Hid Device that the client obtains using 
  1868                    a call to CreateFile on a valid Hid device string name.
  1869                    The string name can be obtained using standard PnP calls.
  1870 
  1871 Return Value:
  1872    TRUE if successful
  1873    FALSE otherwise  -- Use GetLastError() to get extended error information
  1874 --*/
  1875 
  1876 BOOLEAN __stdcall
  1877 HidD_GetConfiguration (
  1878       HANDLE               HidDeviceObject,
  1879    PHIDD_CONFIGURATION Configuration,
  1880       ULONG                ConfigurationLength
  1881    );
  1882 /*++
  1883 Routine Description:
  1884     Get the configuration information for this Hid device
  1885 
  1886 Arguments:
  1887    HidDeviceObject      A handle to a Hid Device Object.
  1888 
  1889    Configuration        A configuration structure.  HidD_GetConfiguration MUST
  1890                         be called before the configuration can be modified and
  1891                         set using HidD_SetConfiguration
  1892 
  1893    ConfigurationLength  That is ``sizeof (HIDD_CONFIGURATION)''. Using this
  1894                         parameter, we can later increase the length of the 
  1895                         configuration array and not break older apps.
  1896 
  1897 Return Value:
  1898    TRUE if successful
  1899    FALSE otherwise  -- Use GetLastError() to get extended error information
  1900 --*/
  1901 
  1902 BOOLEAN __stdcall
  1903 HidD_SetConfiguration (
  1904       HANDLE               HidDeviceObject,
  1905    reads_bytes_(ConfigurationLength) PHIDD_CONFIGURATION Configuration,
  1906       ULONG                ConfigurationLength
  1907    );
  1908 /*++
  1909 Routine Description:
  1910    Set the configuration information for this Hid device...
  1911    
  1912    NOTE: HidD_GetConfiguration must be called to retrieve the current 
  1913          configuration information before this information can be modified 
  1914          and set.
  1915 
  1916 Arguments:
  1917     HidDeviceObject      A handle to a Hid Device Object.
  1918  
  1919     Configuration        A configuration structure.  HidD_GetConfiguration MUST
  1920                          be called before the configuration can be modified and
  1921                          set using HidD_SetConfiguration
  1922  
  1923     ConfigurationLength  That is ``sizeof (HIDD_CONFIGURATION)''. Using this
  1924                          parameter, we can later increase the length of the 
  1925                          configuration array and not break older apps.
  1926 
  1927 Return Value:
  1928     TRUE if successful
  1929     FALSE otherwise  -- Use GetLastError() to get extended error information
  1930 --*/
  1931 
  1932 BOOLEAN __stdcall
  1933 HidD_GetFeature (
  1934        HANDLE   HidDeviceObject,
  1935    PVOID ReportBuffer,
  1936        ULONG    ReportBufferLength
  1937    );
  1938 /*++
  1939 Routine Description:
  1940     Retrieve a feature report from a HID device.
  1941 
  1942 Arguments:
  1943     HidDeviceObject      A handle to a Hid Device Object.
  1944  
  1945     ReportBuffer         The buffer that the feature report should be placed 
  1946                          into.  The first byte of the buffer should be set to
  1947                          the report ID of the desired report
  1948  
  1949     ReportBufferLength   The size (in bytes) of ReportBuffer.  This value 
  1950                          should be greater than or equal to the 
  1951                          FeatureReportByteLength field as specified in the 
  1952                          HIDP_CAPS structure for the device
  1953 Return Value:
  1954     TRUE if successful
  1955     FALSE otherwise  -- Use GetLastError() to get extended error information
  1956 --*/
  1957 
  1958 BOOLEAN __stdcall
  1959 HidD_SetFeature (
  1960        HANDLE   HidDeviceObject,
  1961    reads_bytes_(ReportBufferLength) PVOID ReportBuffer,
  1962        ULONG    ReportBufferLength
  1963    );
  1964 /*++
  1965 Routine Description:
  1966     Send a feature report to a HID device.
  1967 
  1968 Arguments:
  1969     HidDeviceObject      A handle to a Hid Device Object.
  1970  
  1971     ReportBuffer         The buffer of the feature report to send to the device
  1972  
  1973     ReportBufferLength   The size (in bytes) of ReportBuffer.  This value 
  1974                          should be greater than or equal to the 
  1975                          FeatureReportByteLength field as specified in the 
  1976                          HIDP_CAPS structure for the device
  1977 Return Value:
  1978     TRUE if successful
  1979     FALSE otherwise  -- Use GetLastError() to get extended error information
  1980 --*/
  1981 
  1982 
  1983 
  1984 BOOLEAN __stdcall
  1985 HidD_GetInputReport (
  1986        HANDLE   HidDeviceObject,
  1987    PVOID ReportBuffer,
  1988        ULONG    ReportBufferLength
  1989    );
  1990 /*++
  1991 Routine Description:
  1992     Retrieve an input report from a HID device.
  1993 
  1994 Arguments:
  1995     HidDeviceObject      A handle to a Hid Device Object.
  1996  
  1997     ReportBuffer         The buffer that the input report should be placed 
  1998                          into.  The first byte of the buffer should be set to
  1999                          the report ID of the desired report
  2000  
  2001     ReportBufferLength   The size (in bytes) of ReportBuffer.  This value 
  2002                          should be greater than or equal to the 
  2003                          InputReportByteLength field as specified in the 
  2004                          HIDP_CAPS structure for the device
  2005 Return Value:
  2006     TRUE if successful
  2007     FALSE otherwise  -- Use GetLastError() to get extended error information
  2008 --*/
  2009 
  2010 BOOLEAN __stdcall
  2011 HidD_SetOutputReport (
  2012        HANDLE   HidDeviceObject,
  2013    reads_bytes_(ReportBufferLength) PVOID ReportBuffer,
  2014        ULONG    ReportBufferLength
  2015    );
  2016 /*++
  2017 Routine Description:
  2018     Send an output report to a HID device.
  2019 
  2020 Arguments:
  2021     HidDeviceObject      A handle to a Hid Device Object.
  2022  
  2023     ReportBuffer         The buffer of the output report to send to the device
  2024  
  2025     ReportBufferLength   The size (in bytes) of ReportBuffer.  This value 
  2026                          should be greater than or equal to the 
  2027                          OutputReportByteLength field as specified in the 
  2028                          HIDP_CAPS structure for the device
  2029 Return Value:
  2030     TRUE if successful
  2031     FALSE otherwise  -- Use GetLastError() to get extended error information
  2032 --*/
  2033 
  2034 #endif
  2035 
  2036 BOOLEAN __stdcall
  2037 HidD_GetNumInputBuffers (
  2038       HANDLE  HidDeviceObject,
  2039      PULONG  NumberBuffers
  2040     );
  2041 /*++
  2042 Routine Description:
  2043     This function returns the number of input buffers used by the specified
  2044     file handle to the Hid device.  Each file object has a number of buffers
  2045     associated with it to queue reports read from the device but which have
  2046     not yet been read by the user-mode app with a handle to that device.
  2047 
  2048 Arguments:
  2049     HidDeviceObject      A handle to a Hid Device Object.
  2050  
  2051     NumberBuffers        Number of buffers currently being used for this file
  2052                          handle to the Hid device
  2053 
  2054 Return Value:
  2055     TRUE if successful
  2056     FALSE otherwise  -- Use GetLastError() to get extended error information
  2057 --*/
  2058 
  2059 BOOLEAN __stdcall
  2060 HidD_SetNumInputBuffers (
  2061      HANDLE HidDeviceObject,
  2062      ULONG  NumberBuffers
  2063     );
  2064 /*++
  2065 
  2066 Routine Description:
  2067     This function sets the number of input buffers used by the specified
  2068     file handle to the Hid device.  Each file object has a number of buffers
  2069     associated with it to queue reports read from the device but which have
  2070     not yet been read by the user-mode app with a handle to that device.
  2071 
  2072 Arguments:
  2073     HidDeviceObject      A handle to a Hid Device Object.
  2074  
  2075     NumberBuffers        New number of buffers to use for this file handle to
  2076                          the Hid device
  2077 
  2078 Return Value:
  2079     TRUE if successful
  2080     FALSE otherwise  -- Use GetLastError() to get extended error information
  2081 --*/
  2082 
  2083 BOOLEAN __stdcall
  2084 HidD_GetPhysicalDescriptor (
  2085        HANDLE   HidDeviceObject,
  2086    PVOID Buffer,
  2087        ULONG    BufferLength
  2088    );
  2089 /*++
  2090 Routine Description:
  2091     This function retrieves the raw physical descriptor for the specified
  2092     Hid device.  
  2093 
  2094 Arguments:
  2095     HidDeviceObject      A handle to a Hid Device Object.
  2096  
  2097     Buffer               Buffer which on return will contain the physical
  2098                          descriptor if one exists for the specified device
  2099                          handle
  2100 
  2101     BufferLength         Length of buffer (in bytes)
  2102 
  2103 
  2104 Return Value:
  2105     TRUE if successful
  2106     FALSE otherwise  -- Use GetLastError() to get extended error information
  2107 --*/
  2108 
  2109 BOOLEAN __stdcall
  2110 HidD_GetManufacturerString (
  2111        HANDLE   HidDeviceObject,
  2112    PVOID Buffer,
  2113        ULONG    BufferLength
  2114    );
  2115 /*++
  2116 Routine Description:
  2117     This function retrieves the manufacturer string from the specified 
  2118     Hid device.  
  2119 
  2120 Arguments:
  2121     HidDeviceObject      A handle to a Hid Device Object.
  2122  
  2123     Buffer               Buffer which on return will contain the manufacturer
  2124                          string returned from the device.  This string is a 
  2125                          wide-character string
  2126 
  2127     BufferLength         Length of Buffer (in bytes)
  2128 
  2129 
  2130 Return Value:
  2131     TRUE if successful
  2132     FALSE otherwise  -- Use GetLastError() to get extended error information
  2133 --*/
  2134 
  2135 BOOLEAN __stdcall
  2136 HidD_GetProductString (
  2137        HANDLE   HidDeviceObject,
  2138    PVOID Buffer,
  2139        ULONG    BufferLength
  2140    );
  2141 /*++
  2142 Routine Description:
  2143     This function retrieves the product string from the specified 
  2144     Hid device.  
  2145 
  2146 Arguments:
  2147     HidDeviceObject      A handle to a Hid Device Object.
  2148  
  2149     Buffer               Buffer which on return will contain the product
  2150                          string returned from the device.  This string is a 
  2151                          wide-character string
  2152 
  2153     BufferLength         Length of Buffer (in bytes)
  2154 
  2155 
  2156 Return Value:
  2157     TRUE if successful
  2158     FALSE otherwise  -- Use GetLastError() to get extended error information
  2159 --*/
  2160 
  2161 BOOLEAN __stdcall
  2162 HidD_GetIndexedString (
  2163        HANDLE   HidDeviceObject,
  2164        ULONG    StringIndex,
  2165    PVOID Buffer,
  2166        ULONG    BufferLength
  2167    );
  2168 /*++
  2169 Routine Description:
  2170     This function retrieves a string from the specified Hid device that is
  2171     specified with a certain string index.
  2172 
  2173 Arguments:
  2174     HidDeviceObject      A handle to a Hid Device Object.
  2175  
  2176     StringIndex          Index of the string to retrieve
  2177 
  2178     Buffer               Buffer which on return will contain the product
  2179                          string returned from the device.  This string is a 
  2180                          wide-character string
  2181 
  2182     BufferLength         Length of Buffer (in bytes)
  2183 
  2184 Return Value:
  2185     TRUE if successful
  2186     FALSE otherwise  -- Use GetLastError() to get extended error information
  2187 --*/
  2188 
  2189 BOOLEAN __stdcall
  2190 HidD_GetSerialNumberString (
  2191        HANDLE   HidDeviceObject,
  2192    PVOID Buffer,
  2193        ULONG    BufferLength
  2194    );
  2195 /*++
  2196 Routine Description:
  2197     This function retrieves the serial number string from the specified 
  2198     Hid device.  
  2199 
  2200 Arguments:
  2201     HidDeviceObject      A handle to a Hid Device Object.
  2202  
  2203     Buffer               Buffer which on return will contain the serial number
  2204                          string returned from the device.  This string is a 
  2205                          wide-character string
  2206 
  2207     BufferLength         Length of Buffer (in bytes)
  2208 
  2209 Return Value:
  2210     TRUE if successful
  2211     FALSE otherwise  -- Use GetLastError() to get extended error information
  2212 --*/
  2213 
  2214 
  2215 
  2216 BOOLEAN __stdcall
  2217 HidD_GetMsGenreDescriptor (
  2218        HANDLE   HidDeviceObject,
  2219    PVOID Buffer,
  2220        ULONG    BufferLength
  2221    );
  2222 
  2223 
  2224 
  2225 
  2226