Changeset 57762 in vbox
- Timestamp:
- Sep 15, 2015 2:50:20 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r57761 r57762 235 235 } 236 236 237 /** 238 * Show all available command line parameters. 239 */ 240 static void showHelp() 237 /** Shows all available command line parameters. */ 238 static void ShowHelp() 241 239 { 242 240 RTPrintf(VBOX_PRODUCT " Manager %s\n" … … 258 256 # ifdef VBOX_GUI_WITH_PIDFILE 259 257 " --pidfile <file> create a pidfile file when a VM is up and running\n" 260 # endif 258 # endif /* VBOX_GUI_WITH_PIDFILE */ 261 259 # ifdef VBOX_WITH_DEBUGGER_GUI 262 260 " --dbg enable the GUI debug menu\n" … … 268 266 " --start-running start the VM running (for overriding --debug*)\n" 269 267 "\n" 270 # endif 268 # endif /* VBOX_WITH_DEBUGGER_GUI */ 271 269 "Expert options:\n" 272 270 " --disable-patm disable code patching (ignored by AMD-V/VT-x)\n" … … 287 285 " show debug windows at VM startup\n" 288 286 " VBOX_GUI_NO_DEBUGGER disable the GUI debug menu and debug windows\n" 289 # endif 287 # endif /* VBOX_WITH_DEBUGGER_GUI */ 290 288 "\n", 291 289 RTBldCfgVersion()); … … 347 345 || !strcmp(argv[i], "--help")) 348 346 { 349 showHelp();350 347 fHelpShown = true; 348 ShowHelp(); 351 349 break; 352 350 }
Note:
See TracChangeset
for help on using the changeset viewer.