Changeset 11169 in vbox for trunk/include/VBox/pdmdev.h
- Timestamp:
- Aug 6, 2008 12:50:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r11164 r11169 505 505 506 506 /** 507 * PCI Bus GC helpers.508 */ 509 typedef struct PDMPCIHLP GC510 { 511 /** Structure version. PDM_PCIHLP GC_VERSION defines the current version. */507 * PCI Bus RC helpers. 508 */ 509 typedef struct PDMPCIHLPRC 510 { 511 /** Structure version. PDM_PCIHLPRC_VERSION defines the current version. */ 512 512 uint32_t u32Version; 513 513 … … 551 551 /** Just a safety precaution. */ 552 552 uint32_t u32TheEnd; 553 } PDMPCIHLP GC;553 } PDMPCIHLPRC; 554 554 /** Pointer to PCI helpers. */ 555 typedef RCPTRTYPE(PDMPCIHLP GC *) PPDMPCIHLPGC;555 typedef RCPTRTYPE(PDMPCIHLPRC *) PPDMPCIHLPRC; 556 556 /** Pointer to const PCI helpers. */ 557 typedef RCPTRTYPE(const PDMPCIHLP GC *) PCPDMPCIHLPGC;557 typedef RCPTRTYPE(const PDMPCIHLPRC *) PCPDMPCIHLPRC; 558 558 559 559 /** Current PDMPCIHLPR3 version number. */ 560 #define PDM_PCIHLP GC_VERSION 0xe1010000560 #define PDM_PCIHLPRC_VERSION 0xe1010000 561 561 562 562 … … 656 656 657 657 /** 658 * Gets the address of the GC PCI Bus helpers.658 * Gets the address of the RC PCI Bus helpers. 659 659 * 660 660 * This should be called at both construction and relocation time 661 * to obtain the correct address of the GC helpers.662 * 663 * @returns GC pointer to the PCI Bus helpers.661 * to obtain the correct address of the RC helpers. 662 * 663 * @returns RC pointer to the PCI Bus helpers. 664 664 * @param pDevIns Device instance of the PCI Bus. 665 665 * @thread EMT only. 666 666 */ 667 DECLR3CALLBACKMEMBER(PCPDMPCIHLP GC, pfnGetGCHelpers,(PPDMDEVINS pDevIns));667 DECLR3CALLBACKMEMBER(PCPDMPCIHLPRC, pfnGetRCHelpers,(PPDMDEVINS pDevIns)); 668 668 669 669 /**
Note:
See TracChangeset
for help on using the changeset viewer.