// hidsdi.h
BOOLEAN HidD_FreePreparsedData(
[in] PHIDP_PREPARSED_DATA PreparsedData
);
View the official Windows Driver Kit DDI reference
No description available.
The HidD_FreePreparsedData routine releases the resources that the HID class driver allocated to hold a top-level collection's preparsed data.
PreparsedData
[in]Pointer to the buffer, returned by HidD_GetPreparsedData, that is freed.
HidD_FreePreparsedData returns TRUE if it succeeds. Otherwise, it returns FALSE if the buffer was not a preparsed data buffer. Use GetLastError to get extended error information.
Only user-mode applications can call HidD_FreePreparsedData.
To obtain a collection's preparsed data, use HidD_GetPreparsedData.
For more information, see HID Collections.