Changeset 99295 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Apr 5, 2023 10:08:15 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156681
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDirectoryImpl.cpp
r99085 r99295 1008 1008 * @retval VERR_GSTCTL_GUEST_ERROR / VERR_NO_MORE_FILES if no more entries are available after this iteration. 1009 1009 * \a vecObjData will contain the rest of the entries then (if any). 1010 * @retval VERR_NOT_SUPPORTED if the installed Guest Additions do not support this method. 1010 1011 * @param cMaxEntries How many directory entries to read at max. 1011 1012 * @param fFlags Flags of type GSTCTL_DIRLIST_F_XXX. … … 1110 1111 * @retval VERR_GSTCTL_GUEST_ERROR / VERR_NO_MORE_FILES if no more entries are available after this iteration. 1111 1112 * \a vecObjData will contain the rest of the entries then (if any). 1113 * @retval VERR_NOT_SUPPORTED if the installed Guest Additions do not support this method. 1112 1114 * @param cMaxEntries How many directory entries to read at max. 1113 1115 * @param fFlags Flags of type GSTCTL_DIRLIST_F_XXX. … … 1155 1157 * @retval VERR_GSTCTL_GUEST_ERROR / VERR_NO_MORE_FILES if no more entries are available after this iteration. 1156 1158 * \a vecObjData will contain the rest of the entries then (if any). 1159 * @retval VERR_NOT_SUPPORTED if the installed Guest Additions do not support this method. 1157 1160 * @param cMaxEntries How many directory entries to read at max. 1158 1161 * @param vecObjInfo Where to store the read directory entries on success. … … 1475 1478 break; 1476 1479 } 1480 1481 case VERR_NOT_SUPPORTED: /* Returned from i_list(). */ 1482 hrc = VBOX_E_NOT_SUPPORTED; 1483 break; 1477 1484 1478 1485 default:
Note:
See TracChangeset
for help on using the changeset viewer.