VirtualBox

Changeset 15076 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Dec 8, 2008 3:14:15 AM (16 years ago)
Author:
vboxsync
Message:

Different headers included on gcc builds?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vusb.h

    r15075 r15076  
    324324
    325325
     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 */
     332typedef DECLCALLBACK(void) FNUSBTIMERDEV(PPDMDEVINS pDevIns, PTMTIMER pTimer);
     333/** Pointer to a device timer callback function. */
     334typedef FNUSBTIMERDEV *PFNUSBTIMERDEV;
     335
    326336/** Pointer to a VBox USB device interface. */
    327337typedef struct VUSBIDEVICE      *PVUSBIDEVICE;
     
    780790     * @param   rate            Requested frame rate (normally 1,000).
    781791     */
    782     DECLR3CALLBACKMEMBER(int, pfnTimerSetup,(PVUSBITIMER pInterface, PFNTMTIMERDEV pfnCallback, uint32_t rate));
     792    DECLR3CALLBACKMEMBER(int, pfnTimerSetup,(PVUSBITIMER pInterface, PFNUSBTIMERDEV pfnCallback, uint32_t rate));
    783793
    784794    /**
     
    810820 * @param   rate            Requested frame rate (normally 1,000).
    811821 */
    812 DECLINLINE(int) VUSBITimerSetup(PVUSBITIMER pInterface, PFNTMTIMERDEV pfnCallback, uint32_t rate)
     822DECLINLINE(int) VUSBITimerSetup(PVUSBITIMER pInterface, PFNUSBTIMERDEV pfnCallback, uint32_t rate)
    813823{
    814824    return pInterface->pfnTimerSetup(pInterface, pfnCallback, rate);
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette