Changeset 11224 in vbox for trunk/include
- Timestamp:
- Aug 7, 2008 6:25:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r11220 r11224 418 418 * If negative, the pci bus device will assign one. 419 419 */ 420 DECLR3CALLBACKMEMBER(int, pfnRegister HC,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, const char *pszName, int iDev));420 DECLR3CALLBACKMEMBER(int, pfnRegisterR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, const char *pszName, int iDev)); 421 421 422 422 /** … … 431 431 * @param pfnCallback Callback for doing the mapping. 432 432 */ 433 DECLR3CALLBACKMEMBER(int, pfnIORegionRegister HC,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iRegion, uint32_t cbRegion, PCIADDRESSSPACE enmType, PFNPCIIOREGIONMAP pfnCallback));433 DECLR3CALLBACKMEMBER(int, pfnIORegionRegisterR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iRegion, uint32_t cbRegion, PCIADDRESSSPACE enmType, PFNPCIIOREGIONMAP pfnCallback)); 434 434 435 435 /** … … 448 448 * @thread EMT 449 449 */ 450 DECLR3CALLBACKMEMBER(void, pfnSetConfigCallbacks HC,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld,450 DECLR3CALLBACKMEMBER(void, pfnSetConfigCallbacksR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld, 451 451 PFNPCICONFIGWRITE pfnWrite, PPFNPCICONFIGWRITE ppfnWriteOld)); 452 452 … … 459 459 * @param iLevel IRQ level. See the PDM_IRQ_LEVEL_* \#defines. 460 460 */ 461 DECLR3CALLBACKMEMBER(void, pfnSetIrq HC,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel));461 DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel)); 462 462 463 463 /** … … 469 469 * @param pSSMHandle The handle to save the state to. 470 470 */ 471 DECLR3CALLBACKMEMBER(int, pfnSaveExec HC,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PSSMHANDLE pSSMHandle));471 DECLR3CALLBACKMEMBER(int, pfnSaveExecR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PSSMHANDLE pSSMHandle)); 472 472 473 473 /** … … 479 479 * @param pSSMHandle The handle to the saved state. 480 480 */ 481 DECLR3CALLBACKMEMBER(int, pfnLoadExec HC,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PSSMHANDLE pSSMHandle));481 DECLR3CALLBACKMEMBER(int, pfnLoadExecR3,(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PSSMHANDLE pSSMHandle)); 482 482 483 483 /** … … 489 489 * @param pDevIns Device instance of the first bus. 490 490 */ 491 DECLR3CALLBACKMEMBER(int, pfnFakePCIBIOS HC,(PPDMDEVINS pDevIns));492 493 /** The name of the SetIrq GC entry point. */494 const char *pszSetIrq GC;491 DECLR3CALLBACKMEMBER(int, pfnFakePCIBIOSR3,(PPDMDEVINS pDevIns)); 492 493 /** The name of the SetIrq RC entry point. */ 494 const char *pszSetIrqRC; 495 495 496 496 /** The name of the SetIrq R0 entry point. */
Note:
See TracChangeset
for help on using the changeset viewer.