Remove remaining void* descriptor casts in the projects and demos that were not remov...
[pub/USBasp.git] / Demos / Host / LowLevel / KeyboardHostWithParser / HIDReport.h
index b405e09..09cace9 100644 (file)
@@ -47,7 +47,7 @@
                #define USAGE_PAGE_KEYBOARD             0x07
 
        /* Enums: */
-               /** Enum for the possible return codes of the GetHIDReportData() function. */
+               /** Enum for the possible return codes of the \ref GetHIDReportData() function. */
                enum KeyboardHostWithParser_GetHIDReportDataCodes_t
                {
                        ParseSuccessful         = 0, /**< HID report descriptor parsed successfully */
@@ -77,6 +77,6 @@
        /* Function Prototypes: */
                uint8_t GetHIDReportData(void);
 
-               bool CALLBACK_HIDParser_FilterHIDReportItem(HID_ReportItem_t* CurrentItem);
+               bool CALLBACK_HIDParser_FilterHIDReportItem(HID_ReportItem_t* const CurrentItem);
                
 #endif