VirtualBox

Changeset 6224 in vbox


Ignore:
Timestamp:
Dec 31, 2007 11:35:59 AM (17 years ago)
Author:
vboxsync
Message:

spaces and prefixes.

File:
1 edited

Legend:

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

    r6222 r6224  
    145145    PDMINTERFACE_VUSB_DEVICE,
    146146
    147     /** PDMIHOSTPARALLELPORT      - The Host Parallel port interface.     (Down)   Coupled with PDMINTERFACE_HOST_PARALLEL_CONNECTOR. */
     147    /** PDMIHOSTPARALLELPORT    - The Host Parallel port interface.     (Down)   Coupled with PDMINTERFACE_HOST_PARALLEL_CONNECTOR. */
    148148    PDMINTERFACE_HOST_PARALLEL_PORT,
    149     /** PDMIHOSTPARALLELCONNECTOR - The Host Parallel connector interface (Up)     Coupled with PDMINTERFACE_HOST_PARALLEL_PORT. */
     149    /** PDMIHOSTPARALLELCONNECTOR - The Host Parallel connector interface (Up)   Coupled with PDMINTERFACE_HOST_PARALLEL_PORT. */
    150150    PDMINTERFACE_HOST_PARALLEL_CONNECTOR,
    151151
     
    16701670/** Pointer to a host parallel port interface. */
    16711671typedef struct PDMIHOSTPARALLELPORT *PPDMIHOSTPARALLELPORT;
    1672 
    16731672/**
    16741673 * Host parallel port interface.
     
    16951694     * @thread  Any thread.
    16961695     */
    1697     DECLR3CALLBACKMEMBER(int, pfnNotifyInterrupt, (PPDMIHOSTPARALLELPORT pInterface));
     1696    DECLR3CALLBACKMEMBER(int, pfnNotifyInterrupt,(PPDMIHOSTPARALLELPORT pInterface));
    16981697} PDMIHOSTPARALLELPORT;
     1698
    16991699
    17001700
    17011701/** Pointer to a Host Parallel connector interface. */
    17021702typedef struct PDMIHOSTPARALLELCONNECTOR *PPDMIHOSTPARALLELCONNECTOR;
    1703 
    17041703/**
    17051704 * Host parallel connector interface
     
    17451744     * @returns VBox status code.
    17461745     * @param   pInterface      Pointer to the interface structure containing the called function pointer.
    1747      * @param   pvBuf           Where to store the control register bits.
    1748      * @thread  Any thread.
    1749      */
    1750     DECLR3CALLBACKMEMBER(int, pfnReadControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pvBuf));
     1746     * @param   pfReg           Where to store the control register bits.
     1747     * @thread  Any thread.
     1748     */
     1749    DECLR3CALLBACKMEMBER(int, pfnReadControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg));
    17511750
    17521751    /**
     
    17551754     * @returns VBox status code.
    17561755     * @param   pInterface      Pointer to the interface structure containing the called function pointer.
    1757      * @param   pvBuf           Where to store the status register bits.
    1758      * @thread  Any thread.
    1759      */
    1760     DECLR3CALLBACKMEMBER(int, pfnReadStatus,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pvBuf));
     1756     * @param   pfReg           Where to store the status register bits.
     1757     * @thread  Any thread.
     1758     */
     1759    DECLR3CALLBACKMEMBER(int, pfnReadStatus,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg));
    17611760
    17621761    /**
     
    17651764     * @returns VBox status code.
    17661765     * @param   pInterface      Pointer to the interface structure containing the called function pointer.
    1767      * @param   mode            The mode of the host parallel port.
    1768      * @thread  Any thread.
    1769      */
    1770     DECLR3CALLBACKMEMBER(int, pfnSetMode,(PPDMIHOSTPARALLELCONNECTOR pInterface, PDMPARALLELPORTMODE mode));
     1766     * @param   enmMode         The mode of the host parallel port.
     1767     * @thread  Any thread.
     1768     */
     1769    DECLR3CALLBACKMEMBER(int, pfnSetMode,(PPDMIHOSTPARALLELCONNECTOR pInterface, PDMPARALLELPORTMODE enmMode));
    17711770} PDMIHOSTPARALLELCONNECTOR;
    17721771
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