Changeset 68239 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Aug 2, 2017 12:39:12 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/UnattendedImpl.h
r68164 r68239 60 60 PCRTTIMEZONEINFO i_getTimeZoneInfo() const; 61 61 Utf8Str const &i_getLocale() const; 62 Utf8Str const &i_getLanguage() const; 62 63 Utf8Str const &i_getCountry() const; 63 64 bool i_isMinimalInstallation() const; … … 100 101 PCRTTIMEZONEINFO mpTimeZoneInfo; 101 102 Utf8Str mStrLocale; 103 Utf8Str mStrLanguage; /**< (only relevant for windows at the moment) */ 102 104 Utf8Str mStrCountry; 103 105 RTCList<RTCString, RTCString *> mPackageSelectionAdjustments; … … 110 112 Utf8Str mStrPostInstallCommand; 111 113 Utf8Str mStrExtraInstallKernelParameters; 114 115 bool mfDoneDetectIsoOS; /**< Set by detectIsoOS(), cleared by setIsoPath(). */ 112 116 Utf8Str mStrDetectedOSTypeId; 113 117 Utf8Str mStrDetectedOSVersion; 114 118 Utf8Str mStrDetectedOSFlavor; 119 RTCList<RTCString, RTCString *> mDetectedOSLanguages; /**< (only relevant for windows at the moment) */ 115 120 Utf8Str mStrDetectedOSHints; 116 121 /** @} */ … … 166 171 HRESULT getLocale(com::Utf8Str &aLocale); 167 172 HRESULT setLocale(const com::Utf8Str &aLocale); 173 HRESULT getLanguage(com::Utf8Str &aLanguage); 174 HRESULT setLanguage(const com::Utf8Str &aLanguage); 168 175 HRESULT getCountry(com::Utf8Str &aCountry); 169 176 HRESULT setCountry(const com::Utf8Str &aCountry); … … 190 197 HRESULT getDetectedOSTypeId(com::Utf8Str &aDetectedOSTypeId); 191 198 HRESULT getDetectedOSVersion(com::Utf8Str &aDetectedOSVersion); 199 HRESULT getDetectedOSLanguages(com::Utf8Str &aDetectedOSLanguages); 192 200 HRESULT getDetectedOSFlavor(com::Utf8Str &aDetectedOSFlavor); 193 201 HRESULT getDetectedOSHints(com::Utf8Str &aDetectedOSHints);
Note:
See TracChangeset
for help on using the changeset viewer.