- Timestamp:
- Apr 5, 2023 10:08:15 AM (22 months ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r99262 r99295 16486 16486 No more directory entries to read. 16487 16487 </result> 16488 <result name="VBOX_E_NOT_SUPPORTED"> 16489 Method not supported by installed Guest Additions. 16490 </result> 16488 16491 </desc> 16489 16492 <param name="maxEntries" type="unsigned long" dir="in"> -
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.