Changeset 6224 in vbox
- Timestamp:
- Dec 31, 2007 11:35:59 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmifs.h
r6222 r6224 145 145 PDMINTERFACE_VUSB_DEVICE, 146 146 147 /** PDMIHOSTPARALLELPORT 147 /** PDMIHOSTPARALLELPORT - The Host Parallel port interface. (Down) Coupled with PDMINTERFACE_HOST_PARALLEL_CONNECTOR. */ 148 148 PDMINTERFACE_HOST_PARALLEL_PORT, 149 /** PDMIHOSTPARALLELCONNECTOR - The Host Parallel connector interface (Up) 149 /** PDMIHOSTPARALLELCONNECTOR - The Host Parallel connector interface (Up) Coupled with PDMINTERFACE_HOST_PARALLEL_PORT. */ 150 150 PDMINTERFACE_HOST_PARALLEL_CONNECTOR, 151 151 … … 1670 1670 /** Pointer to a host parallel port interface. */ 1671 1671 typedef struct PDMIHOSTPARALLELPORT *PPDMIHOSTPARALLELPORT; 1672 1673 1672 /** 1674 1673 * Host parallel port interface. … … 1695 1694 * @thread Any thread. 1696 1695 */ 1697 DECLR3CALLBACKMEMBER(int, pfnNotifyInterrupt, 1696 DECLR3CALLBACKMEMBER(int, pfnNotifyInterrupt,(PPDMIHOSTPARALLELPORT pInterface)); 1698 1697 } PDMIHOSTPARALLELPORT; 1698 1699 1699 1700 1700 1701 1701 /** Pointer to a Host Parallel connector interface. */ 1702 1702 typedef struct PDMIHOSTPARALLELCONNECTOR *PPDMIHOSTPARALLELCONNECTOR; 1703 1704 1703 /** 1705 1704 * Host parallel connector interface … … 1745 1744 * @returns VBox status code. 1746 1745 * @param pInterface Pointer to the interface structure containing the called function pointer. 1747 * @param p vBufWhere to store the control register bits.1748 * @thread Any thread. 1749 */ 1750 DECLR3CALLBACKMEMBER(int, pfnReadControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *p vBuf));1746 * @param pfReg Where to store the control register bits. 1747 * @thread Any thread. 1748 */ 1749 DECLR3CALLBACKMEMBER(int, pfnReadControl,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg)); 1751 1750 1752 1751 /** … … 1755 1754 * @returns VBox status code. 1756 1755 * @param pInterface Pointer to the interface structure containing the called function pointer. 1757 * @param p vBufWhere to store the status register bits.1758 * @thread Any thread. 1759 */ 1760 DECLR3CALLBACKMEMBER(int, pfnReadStatus,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *p vBuf));1756 * @param pfReg Where to store the status register bits. 1757 * @thread Any thread. 1758 */ 1759 DECLR3CALLBACKMEMBER(int, pfnReadStatus,(PPDMIHOSTPARALLELCONNECTOR pInterface, uint8_t *pfReg)); 1761 1760 1762 1761 /** … … 1765 1764 * @returns VBox status code. 1766 1765 * @param pInterface Pointer to the interface structure containing the called function pointer. 1767 * @param modeThe 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)); 1771 1770 } PDMIHOSTPARALLELCONNECTOR; 1772 1771
Note:
See TracChangeset
for help on using the changeset viewer.