aboutsummaryrefslogtreecommitdiff
path: root/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-11-23 13:22:33 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-11-23 13:22:33 +0000
commitb03f8ca192ab4b1dcc6bf009ad468f0cb6c1a64a (patch)
tree64c4bbe93b3b1db04b7444e5c41bbe05ba6b7b45 /Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h
parent10e5d274fbb954254a186f56951792e8f7950387 (diff)
Added new ReportType parameter to the HID Device Class driver CALLBACK_HID_Device_CreateHIDReport() callback to indicate the report type to generate.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@911 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h')
-rw-r--r--Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h b/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h
index 5fc2d84e..37026df9 100644
--- a/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h
+++ b/Demos/DualRole/ClassDriver/MouseHostDevice/DeviceFunctions.h
@@ -43,6 +43,11 @@
extern USB_ClassInfo_HID_Device_t Mouse_HID_Device_Interface;
/* Function Prototypes: */
+ bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID,
+ const uint8_t ReportType, void* ReportData, uint16_t* ReportSize);
+ void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, const uint8_t ReportID,
+ const void* ReportData, const uint16_t ReportSize);
+
void EVENT_USB_Device_Connect(void);
void EVENT_USB_Device_Disconnect(void);
void EVENT_USB_Device_ConfigurationChanged(void);