Changeset 26160 in vbox for trunk/include/VBox
- Timestamp:
- Feb 2, 2010 6:23:29 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57174
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r26159 r26160 57 57 * 58 58 * @returns VBox status. 59 * @param pDevIns The device instance data. 60 * If the registration structure is needed, pDevIns->pDevReg points to it.59 * @param pDevIns The device instance data. If the registration structure 60 * is needed, it can be accessed thru pDevIns->pReg. 61 61 * @param iInstance Instance number. Use this to figure out which registers and such to use. 62 62 * The instance number is also found in pDevIns->iInstance, but since it's … … 3490 3490 3491 3491 /** Pointer to device registration structure. */ 3492 R3PTRTYPE(PCPDMDEVREG) p DevReg;3492 R3PTRTYPE(PCPDMDEVREG) pReg; 3493 3493 /** Configuration handle. */ 3494 3494 R3PTRTYPE(PCFGMNODE) pCfgHandle; … … 4330 4330 * @returns VBox status code. 4331 4331 * @param pCallbacks Pointer to the callback table. 4332 * @param p DevRegPointer to the device registration record.4332 * @param pReg Pointer to the device registration record. 4333 4333 * This data must be permanent and readonly. 4334 4334 */ 4335 DECLR3CALLBACKMEMBER(int, pfnRegister,(PPDMDEVREGCB pCallbacks, PCPDMDEVREG p DevReg));4335 DECLR3CALLBACKMEMBER(int, pfnRegister,(PPDMDEVREGCB pCallbacks, PCPDMDEVREG pReg)); 4336 4336 4337 4337 /** -
trunk/include/VBox/pdmusb.h
r26112 r26160 106 106 * @returns VBox status. 107 107 * @param pUsbIns The USB device instance data. 108 * If the registration structure is needed, pUsbDev->pDevReg points to it. 109 * @param iInstance Instance number. Use this to figure out which registers and such to use. 110 * The instance number is also found in pUsbDev->iInstance, but since it's 111 * likely to be freqently used PDM passes it as parameter. 112 * @param pCfg Configuration node handle for the device. Use this to obtain the configuration 113 * of the device instance. It's also found in pUsbDev->pCfg, but since it's 114 * primary usage will in this function it's passed as a parameter. 115 * @param pCfgGlobal Handle to the global device configuration. Also found in pUsbDev->pCfgGlobal. 108 * If the registration structure is needed, 109 * pUsbDev->pUsbReg points to it. 110 * @param iInstance Instance number. Use this to figure out which registers 111 * and such to use. The instance number is also found in 112 * pUsbDev->iInstance, but since it's likely to be 113 * freqently used PDM passes it as parameter. 114 * @param pCfg Configuration node handle for the device. Use this to 115 * obtain the configuration of the device instance. It's 116 * also found in pUsbDev->pCfg, but since it's primary 117 * usage will in this function it's passed as a parameter. 118 * @param pCfgGlobal Handle to the global device configuration. Also foundin 119 * pUsbDev->pCfgGlobal. 116 120 * @remarks This callback is required. 117 121 */ … … 814 818 * @returns VBox status code. 815 819 * @param pCallbacks Pointer to the callback table. 816 * @param p DevReg Pointer to thedevice registration record.820 * @param pReg Pointer to the USB device registration record. 817 821 * This data must be permanent and readonly. 818 822 */ 819 DECLR3CALLBACKMEMBER(int, pfnRegister,(PCPDMUSBREGCB pCallbacks, PCPDMUSBREG p DevReg));823 DECLR3CALLBACKMEMBER(int, pfnRegister,(PCPDMUSBREGCB pCallbacks, PCPDMUSBREG pReg)); 820 824 821 825 /**
Note:
See TracChangeset
for help on using the changeset viewer.