- Timestamp:
- Feb 1, 2022 4:56:55 PM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/UnattendedImpl.h
r93534 r93535 224 224 HRESULT getDetectedOSHints(com::Utf8Str &aDetectedOSHints); 225 225 HRESULT getDetectedImageNames(std::vector<com::Utf8Str> &aDetectedImageNames); 226 HRESULT getDetectedImageIndices(std::vector< uint32_t> &aDetectedImageIndices);226 HRESULT getDetectedImageIndices(std::vector<ULONG> &aDetectedImageIndices); 227 227 //internal functions 228 228 -
trunk/src/VBox/Main/src-server/UnattendedImpl.cpp
r93534 r93535 3241 3241 } 3242 3242 3243 HRESULT Unattended::getDetectedImageIndices(std::vector< uint32_t> &aDetectedImageIndices)3243 HRESULT Unattended::getDetectedImageIndices(std::vector<ULONG> &aDetectedImageIndices) 3244 3244 { 3245 3245 AutoReadLock alock(this COMMA_LOCKVAL_SRC_POS); -
trunk/src/VBox/Main/testcase/tstUnattendedScript.cpp
r93534 r93535 445 445 } 446 446 447 HRESULT Unattended::getDetectedImageIndices(std::vector< uint32_t> &aDetectedImageIndices)447 HRESULT Unattended::getDetectedImageIndices(std::vector<ULONG> &aDetectedImageIndices) 448 448 { 449 449 RT_NOREF(aDetectedImageIndices);
Note:
See TracChangeset
for help on using the changeset viewer.