Changeset 50991 in vbox for trunk/include
- Timestamp:
- Apr 8, 2014 10:45:31 AM (11 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd.h
r48878 r50991 569 569 570 570 /** 571 * Adds a filter to the disk. 572 * 573 * @returns VBox status code. 574 * @param pDisk Pointer to the HDD container which should use the filter. 575 * @param pszFilter Name of the filter backend to use (case insensitive). 576 * @param pVDIfsFilter Pointer to the per-filter VD interface list. 577 */ 578 VBOXDDU_DECL(int) VDFilterAdd(PVBOXHDD pDisk, const char *pszFilter, 579 PVDINTERFACE pVDIfsFilter); 580 581 /** 571 582 * Creates and opens a new base image file. 572 583 * … … 829 840 830 841 /** 842 * Removes the last added filter in the HDD container. 843 * 844 * @return VBox status code. 845 * @retval VERR_VD_NOT_OPENED if no filter is present for the disk. 846 * @param pDisk Pointer to HDD container. 847 */ 848 VBOXDDU_DECL(int) VDFilterRemove(PVBOXHDD pDisk); 849 850 /** 831 851 * Closes the currently opened cache image file in HDD container. 832 852 * … … 845 865 */ 846 866 VBOXDDU_DECL(int) VDCloseAll(PVBOXHDD pDisk); 867 868 /** 869 * Removes all filters of the given HDD container. 870 * 871 * @return VBox status code. 872 * @param pDisk Pointer to HDD container. 873 */ 874 VBOXDDU_DECL(int) VDFilterRemoveAll(PVBOXHDD pDisk); 847 875 848 876 /**
Note:
See TracChangeset
for help on using the changeset viewer.