Changeset 15076 in vbox for trunk/include/VBox
- Timestamp:
- Dec 8, 2008 3:14:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vusb.h
r15075 r15076 324 324 325 325 326 /** 327 * USB frame timer callback function. 328 * 329 * @param pDevIns Device instance of the device which registered the timer. 330 * @param pTimer The timer handle. 331 */ 332 typedef DECLCALLBACK(void) FNUSBTIMERDEV(PPDMDEVINS pDevIns, PTMTIMER pTimer); 333 /** Pointer to a device timer callback function. */ 334 typedef FNUSBTIMERDEV *PFNUSBTIMERDEV; 335 326 336 /** Pointer to a VBox USB device interface. */ 327 337 typedef struct VUSBIDEVICE *PVUSBIDEVICE; … … 780 790 * @param rate Requested frame rate (normally 1,000). 781 791 */ 782 DECLR3CALLBACKMEMBER(int, pfnTimerSetup,(PVUSBITIMER pInterface, PFN TMTIMERDEV pfnCallback, uint32_t rate));792 DECLR3CALLBACKMEMBER(int, pfnTimerSetup,(PVUSBITIMER pInterface, PFNUSBTIMERDEV pfnCallback, uint32_t rate)); 783 793 784 794 /** … … 810 820 * @param rate Requested frame rate (normally 1,000). 811 821 */ 812 DECLINLINE(int) VUSBITimerSetup(PVUSBITIMER pInterface, PFN TMTIMERDEV pfnCallback, uint32_t rate)822 DECLINLINE(int) VUSBITimerSetup(PVUSBITIMER pInterface, PFNUSBTIMERDEV pfnCallback, uint32_t rate) 813 823 { 814 824 return pInterface->pfnTimerSetup(pInterface, pfnCallback, rate);
Note:
See TracChangeset
for help on using the changeset viewer.