Changeset 8529 in vbox for trunk/src/VBox
- Timestamp:
- May 2, 2008 8:41:57 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30433
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvBlock.cpp
r8374 r8529 695 695 } 696 696 697 /** 698 * Reset notification. 699 * 700 * @returns VBox status. 701 * @param pDevIns The driver instance data. 702 */ 703 static DECLCALLBACK(void) drvblockReset(PPDMDRVINS pDrvIns) 704 { 705 PDRVBLOCK pData = PDMINS2DATA(pDrvIns, PDRVBLOCK); 706 707 pData->fLocked = false; 708 } 697 709 698 710 /** … … 979 991 NULL, 980 992 /* pfnReset */ 981 NULL,993 drvblockReset, 982 994 /* pfnSuspend */ 983 995 NULL, … … 987 999 drvblockDetach 988 1000 }; 989 990 991
Note:
See TracChangeset
for help on using the changeset viewer.