Changeset 45602 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 18, 2013 10:02:15 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85097
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/ApplianceImpl.cpp
r45367 r45602 245 245 * Private helper func that suggests a VirtualBox guest OS type 246 246 * for the given OVF operating system type. 247 * @param osTypeVBox 248 * @param c 249 */ 250 ovf::CIMOSType_T convertVBoxOSType2CIMOSType(const char *pcszVbox) 247 * @param pcszVBox Our guest OS type identifier string. 248 */ 249 ovf::CIMOSType_T convertVBoxOSType2CIMOSType(const char *pcszVBox) 251 250 { 252 251 for (size_t i = 0; i < RT_ELEMENTS(g_osTypes); ++i) 253 252 { 254 if (!RTStrICmp(pcszV box, Global::OSTypeId(g_osTypes[i].osType)))253 if (!RTStrICmp(pcszVBox, Global::OSTypeId(g_osTypes[i].osType))) 255 254 return g_osTypes[i].cim; 256 255 }
Note:
See TracChangeset
for help on using the changeset viewer.