Changeset 61577 in vbox for trunk/src/VBox
- Timestamp:
- Jun 8, 2016 1:33:16 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp
r60685 r61577 5 5 6 6 /* 7 * Copyright (C) 2006-201 5Oracle Corporation7 * Copyright (C) 2006-2016 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 602 602 LONG64 i64Value; 603 603 BOOL fValue; 604 const char *psz; 604 605 605 606 pVirtualBox->COMGETTER(APIVersion)(str.asOutParam()); … … 700 701 systemProperties->COMGETTER(DefaultFrontend)(str.asOutParam()); 701 702 RTPrintf("Default frontend: %ls\n", str.raw()); 703 AudioDriverType_T enmAudio; 704 systemProperties->COMGETTER(DefaultAudioDriver)(&enmAudio); 705 switch (enmAudio) 706 { 707 case AudioDriverType_Null: psz = "Null"; break; 708 case AudioDriverType_WinMM: psz = "WinMM"; break; 709 case AudioDriverType_OSS: psz = "OSS"; break; 710 case AudioDriverType_ALSA: psz = "ALSA"; break; 711 case AudioDriverType_DirectSound: psz = "DirectSound"; break; 712 case AudioDriverType_CoreAudio: psz = "CoreAudio"; break; 713 case AudioDriverType_MMPM: psz = "MMPM"; break; 714 case AudioDriverType_Pulse: psz = "Pulse"; break; 715 case AudioDriverType_SolAudio: psz = "SolAudio"; break; 716 default: psz = "Unknown"; 717 } 718 RTPrintf("Default audio driver: %s\n", psz); 702 719 systemProperties->COMGETTER(AutostartDatabasePath)(str.asOutParam()); 703 720 RTPrintf("Autostart database path: %ls\n", str.raw());
Note:
See TracChangeset
for help on using the changeset viewer.