Changeset 102116 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Nov 15, 2023 7:41:58 PM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 160237
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/UnattendedImpl.h
r101683 r102116 89 89 Utf8Str const &i_getValidationKitIsoPath() const; 90 90 bool i_getInstallTestExecService() const; 91 Utf8Str const &i_getUserPayloadIsoPath() const; 92 bool i_getInstallUserPayload() const; 91 93 Utf8Str const &i_getTimeZone() const; 92 94 PCRTTIMEZONEINFO i_getTimeZoneInfo() const; … … 135 137 bool mfInstallTestExecService; 136 138 Utf8Str mStrValidationKitIsoPath; 139 Utf8Str mStrUserPayloadIsoPath; 140 bool mfInstallUserPayload; 137 141 Utf8Str mStrTimeZone; 138 142 PCRTTIMEZONEINFO mpTimeZoneInfo; … … 209 213 HRESULT getInstallTestExecService(BOOL *aInstallTestExecService); 210 214 HRESULT setInstallTestExecService(BOOL aInstallTestExecService); 215 HRESULT getUserPayloadIsoPath(com::Utf8Str &aUserPayloadIsoPath); 216 HRESULT setUserPayloadIsoPath(const com::Utf8Str &aUserPayloadIsoPath); 217 HRESULT getInstallUserPayload(BOOL *aInstallUserPayload); 218 HRESULT setInstallUserPayload(BOOL aInstallUserPayload); 211 219 HRESULT getTimeZone(com::Utf8Str &aTimezone); 212 220 HRESULT setTimeZone(const com::Utf8Str &aTimezone); -
trunk/src/VBox/Main/include/UnattendedInstaller.h
r101695 r102116 342 342 * 343 343 * The base class implementation adds the script from mAlg, additions ISO 344 * content to '/vboxadditions', and validation kit ISO to '/vboxvalidationkit'. 344 * content to '/vboxadditions', validation kit ISO to '/vboxvalidationkit', 345 * and user payload ISO to '/vboxuserpayload'. 345 346 * 346 347 * @returns COM status code.
Note:
See TracChangeset
for help on using the changeset viewer.