Changeset 32935 in vbox for trunk/src/VBox/VMM/PDMInternal.h
- Timestamp:
- Oct 6, 2010 9:28:42 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMInternal.h
r32820 r32935 548 548 /** @copydoc PDMIOAPICREG::pfnSetIrqR3 */ 549 549 DECLR3CALLBACKMEMBER(void, pfnSetIrqR3,(PPDMDEVINS pDevIns, int iIrq, int iLevel)); 550 /** @copydoc PDMIOAPICREG::pfnSendMsiR3 */ 551 DECLR3CALLBACKMEMBER(void, pfnSendMsiR3,(PPDMDEVINS pDevIns, RTGCPHYS GCAddr, uint32_t uValue)); 550 552 551 553 /** Pointer to the PIC device instance - R0. */ … … 553 555 /** @copydoc PDMIOAPICREG::pfnSetIrqR3 */ 554 556 DECLR0CALLBACKMEMBER(void, pfnSetIrqR0,(PPDMDEVINS pDevIns, int iIrq, int iLevel)); 557 /** @copydoc PDMIOAPICREG::pfnSendMsiR3 */ 558 DECLR0CALLBACKMEMBER(void, pfnSendMsiR0,(PPDMDEVINS pDevIns, RTGCPHYS GCAddr, uint32_t uValue)); 555 559 556 560 /** Pointer to the APIC device instance - RC Ptr. */ … … 558 562 /** @copydoc PDMIOAPICREG::pfnSetIrqR3 */ 559 563 DECLRCCALLBACKMEMBER(void, pfnSetIrqRC,(PPDMDEVINS pDevIns, int iIrq, int iLevel)); 564 /** @copydoc PDMIOAPICREG::pfnSendMsiR3 */ 565 DECLRCCALLBACKMEMBER(void, pfnSendMsiRC,(PPDMDEVINS pDevIns, RTGCPHYS GCAddr, uint32_t uValue)); 566 567 uint8_t Alignment[4]; 560 568 } PDMIOAPIC; 561 569
Note:
See TracChangeset
for help on using the changeset viewer.