Changeset 22322 in vbox for trunk/include
- Timestamp:
- Aug 18, 2009 1:15:13 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51211
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmdrv.h
r22277 r22322 156 156 * Attach command. 157 157 * 158 * This is called to let the drive attach to a driver at runtime. This is not 159 * called during VM construction, the driver constructor have to do this by 160 * calling PDMDrvHlpAttach. 158 * This is called to let the drive attach to a driver at runtime. This is not 159 * called during VM construction, the driver constructor have to do this by 160 * calling PDMDrvHlpAttach. 161 161 * 162 162 * This is like plugging in the keyboard or mouse after turning on the PC. … … 178 178 * This is like ejecting a cdrom or floppy. 179 179 * 180 * @param pDrvIns The driver instance. 181 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 180 * @param pDrvIns The driver instance. 181 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 182 182 */ 183 183 typedef DECLCALLBACK(void) FNPDMDRVDETACH(PPDMDRVINS pDrvIns, uint32_t fFlags); … … 389 389 * @returns VBox status code. 390 390 * @param pDrvIns Driver instance. 391 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 391 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 392 392 * @param ppBaseInterface Where to store the pointer to the base interface. 393 393 */ … … 398 398 * 399 399 * @returns VBox status code. 400 * @param pDrvIns Driver instance. 401 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 400 * @param pDrvIns Driver instance. 401 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 402 402 */ 403 403 DECLR3CALLBACKMEMBER(int, pfnDetach,(PPDMDRVINS pDrvIns, uint32_t fFlags)); … … 409 409 * @returns VBox status code. 410 410 * @param pDrvIns Driver instance. 411 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 411 * @param fFlags PDM_TACH_FLAGS_NOT_HOT_PLUG or 0. 412 412 */ 413 413 DECLR3CALLBACKMEMBER(int, pfnDetachSelf,(PPDMDRVINS pDrvIns, uint32_t fFlags)); … … 851 851 } 852 852 853 /** 854 * Check that there is no driver below the us that we should attach to. 855 * 856 * @returns VERR_PDM_NO_ATTACHED_DRIVER if there is no driver. 857 * @param pDrvIns The driver instance. 853 /** 854 * Check that there is no driver below the us that we should attach to. 855 * 856 * @returns VERR_PDM_NO_ATTACHED_DRIVER if there is no driver. 857 * @param pDrvIns The driver instance. 858 858 */ 859 859 DECLINLINE(int) PDMDrvHlpNoAttach(PPDMDRVINS pDrvIns)
Note:
See TracChangeset
for help on using the changeset viewer.