Changeset 17334 in vbox for trunk/include
- Timestamp:
- Mar 4, 2009 9:26:26 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43710
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r17251 r17334 3067 3067 DECLR0CALLBACKMEMBER(PVM, pfnGetVM,(PPDMDEVINS pDevIns)); 3068 3068 3069 /** 3070 * Checks if our current CPU state allows for IO block emulation fallback to the recompiler 3071 * 3072 * @returns true = yes, false = no 3073 * @param pDevIns Device instance. 3074 */ 3075 DECLR0CALLBACKMEMBER(bool, pfnCanEmulateIoBlock,(PPDMDEVINS pDevIns)); 3076 3069 3077 /** Just a safety precaution. */ 3070 3078 uint32_t u32TheEnd; … … 3076 3084 3077 3085 /** Current PDMDEVHLP version number. */ 3078 #define PDM_DEVHLPR0_VERSION 0xfb0 100003086 #define PDM_DEVHLPR0_VERSION 0xfb020000 3079 3087 3080 3088 … … 3662 3670 } 3663 3671 3672 #ifdef IN_RING0 3673 /** 3674 * @copydoc PDMDEVHLPR0::pfnCanEmulateIoBlock 3675 */ 3676 DECLINLINE(bool) PDMDevHlpCanEmulateIoBlock(PPDMDEVINS pDevIns) 3677 { 3678 return pDevIns->CTX_SUFF(pDevHlp)->pfnCanEmulateIoBlock(pDevIns); 3679 } 3680 #endif 3681 3664 3682 /** 3665 3683 * @copydoc PDMDEVHLPR3::pfnPCISetIrq
Note:
See TracChangeset
for help on using the changeset viewer.