Changeset 7768 in vbox for trunk/include/VBox/pdmdev.h
- Timestamp:
- Apr 7, 2008 1:22:40 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdev.h
r7755 r7768 2228 2228 DECLR3CALLBACKMEMBER(int, pfnPhysGCPtr2GCPhys, (PPDMDEVINS pDevIns, RTGCPTR GCPtr, PRTGCPHYS pGCPhys)); 2229 2229 2230 /** 2231 * Gets the VM state. 2232 * 2233 * @returns VM state. 2234 * @param pDevIns The device instance. 2235 * @thread Any thread (just keep in mind that it's volatile info). 2236 */ 2237 DECLR3CALLBACKMEMBER(VMSTATE, pfnVMState, (PPDMDEVINS pDevIns)); 2238 2230 2239 /** Space reserved for future members. 2231 2240 * @{ */ 2232 DECLR3CALLBACKMEMBER(void, pfnReserved3,(void));2233 2241 DECLR3CALLBACKMEMBER(void, pfnReserved4,(void)); 2234 2242 DECLR3CALLBACKMEMBER(void, pfnReserved5,(void)); … … 2671 2679 2672 2680 /** Current PDMDEVHLP version number. */ 2673 #define PDM_DEVHLP_VERSION 0xf205000 12681 #define PDM_DEVHLP_VERSION 0xf2050002 2674 2682 2675 2683 … … 3354 3362 3355 3363 /** 3364 * @copydoc PDMDEVHLP::pfnVMState 3365 */ 3366 DECLINLINE(VMSTATE) PDMDevHlpVMState(PPDMDEVINS pDevIns) 3367 { 3368 return pDevIns->pDevHlp->pfnVMState(pDevIns); 3369 } 3370 3371 /** 3356 3372 * @copydoc PDMDEVHLP::pfnA20Set 3357 3373 */
Note:
See TracChangeset
for help on using the changeset viewer.