Changeset 86883 in vbox
- Timestamp:
- Nov 13, 2020 2:29:29 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r86872 r86883 43 43 * Defines * 44 44 *********************************************************************************************************************************/ 45 #define VBOXCLIENT_OPT_NORESPAWN 95046 47 45 #define VBOXCLIENT_OPT_SERVICES 980 48 46 #define VBOXCLIENT_OPT_CHECKHOSTVERSION VBOXCLIENT_OPT_SERVICES … … 257 255 RTPrintf("Options:\n"); 258 256 #ifdef VBOX_WITH_SHARED_CLIPBOARD 259 RTPrintf(" --clipboard starts the shared clipboard service\n");257 RTPrintf(" --clipboard starts the shared clipboard service\n"); 260 258 #endif 261 259 #ifdef VBOX_WITH_DRAG_AND_DROP 262 RTPrintf(" --draganddrop starts the drag and drop service\n");260 RTPrintf(" --draganddrop starts the drag and drop service\n"); 263 261 #endif 264 262 #ifdef VBOX_WITH_GUEST_PROPS 265 RTPrintf(" --checkhostversion starts the host version notifier service\n");263 RTPrintf(" --checkhostversion starts the host version notifier service\n"); 266 264 #endif 267 265 #ifdef VBOX_WITH_SEAMLESS 268 RTPrintf(" --seamless starts the seamless windows service\n");266 RTPrintf(" --seamless starts the seamless windows service\n"); 269 267 #endif 270 268 #ifdef VBOX_WITH_VMSVGA 271 RTPrintf(" --vmsvga starts VMSVGA dynamic resizing for X11/Wayland guests\n"); 272 #endif 273 RTPrintf(" -f, --foreground run in the foreground (no daemonizing)\n"); 274 RTPrintf(" -d, --nodaemon continues running as a system service\n"); 275 RTPrintf(" -h, --help shows this help text\n"); 276 RTPrintf(" -v, --verbose increases logging verbosity level\n"); 277 RTPrintf(" -V, --version shows version information\n"); 269 RTPrintf(" --vmsvga starts VMSVGA dynamic resizing for X11/Wayland guests\n"); 270 #endif 271 RTPrintf(" -f, --foreground run in the foreground (no daemonizing)\n"); 272 RTPrintf(" -d, --nodaemon continues running as a system service\n"); 273 RTPrintf(" -h, --help shows this help text\n"); 274 RTPrintf(" -l, --logfile <path> enables logging to a file\n"); 275 RTPrintf(" -v, --verbose increases logging verbosity level\n"); 276 RTPrintf(" -V, --version shows version information\n"); 278 277 RTPrintf("\n"); 279 278 } … … 350 349 { "--help", 'h', RTGETOPT_REQ_NOTHING }, 351 350 { "--logfile", 'l', RTGETOPT_REQ_STRING }, 352 { "--no-respawn", VBOXCLIENT_OPT_NORESPAWN, RTGETOPT_REQ_NOTHING },353 351 { "--version", 'V', RTGETOPT_REQ_NOTHING }, 354 352 { "--verbose", 'v', RTGETOPT_REQ_NOTHING },
Note:
See TracChangeset
for help on using the changeset viewer.