Changeset 94235 in vbox for trunk/src/VBox
- Timestamp:
- Mar 15, 2022 9:21:26 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r94234 r94235 509 509 void printUsage(USAGECATEGORY enmCommand, uint64_t fSubcommandScope, PRTSTREAM pStrm) 510 510 { 511 bool fDumpOpts = false;512 #ifdef RT_OS_LINUX513 bool fLinux = true;514 #else515 bool fLinux = false;516 #endif517 #ifdef RT_OS_WINDOWS518 bool fWin = true;519 #else520 bool fWin = false;521 #endif522 #ifdef RT_OS_SOLARIS523 bool fSolaris = true;524 #else525 bool fSolaris = false;526 #endif527 #ifdef RT_OS_FREEBSD528 bool fFreeBSD = true;529 #else530 bool fFreeBSD = false;531 #endif532 #ifdef RT_OS_DARWIN533 bool fDarwin = true;534 #else535 bool fDarwin = false;536 #endif537 #ifdef VBOX_WITH_VBOXSDL538 bool fVBoxSDL = true;539 #else540 bool fVBoxSDL = false;541 #endif542 543 511 RT_NOREF(fSubcommandScope); 544 512 … … 547 515 548 516 if (enmCommand == USAGE_S_DUMPOPTS) 549 {550 fDumpOpts = true;551 fLinux = true;552 fWin = true;553 fSolaris = true;554 fFreeBSD = true;555 fDarwin = true;556 fVBoxSDL = true;557 517 enmCommand = USAGE_S_ALL; 558 }559 518 560 519 RTStrmPrintf(pStrm,
Note:
See TracChangeset
for help on using the changeset viewer.