Changeset 55440 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Apr 27, 2015 11:06:16 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99786
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r55401 r55440 7 7 8 8 /* 9 * Copyright (C) 2006-201 1Oracle Corporation9 * Copyright (C) 2006-2015 Oracle Corporation 10 10 * 11 11 * This file is part of VirtualBox Open Source Edition (OSE), as … … 30 30 #include <X11/Xatom.h> 31 31 32 #include <iprt/buildconfig.h> 32 33 #include <iprt/critsect.h> 33 34 #include <iprt/env.h> … … 250 251 #endif 251 252 "--seamless [-d|--nodaemon]\n", pcszFileName); 252 RTPrintf("Start the VirtualBox X Window System guest services.\n\n");253 RTPrintf("Starts the VirtualBox X Window System guest services.\n\n"); 253 254 RTPrintf("Options:\n"); 254 RTPrintf(" --clipboard start the shared clipboard service\n");255 RTPrintf(" --clipboard starts the shared clipboard service\n"); 255 256 #ifdef VBOX_WITH_DRAG_AND_DROP 256 RTPrintf(" --draganddrop start the drag and drop service\n");257 RTPrintf(" --draganddrop starts the drag and drop service\n"); 257 258 #endif 258 RTPrintf(" --display start the display management service\n");259 RTPrintf(" --display starts the display management service\n"); 259 260 #ifdef VBOX_WITH_GUEST_PROPS 260 RTPrintf(" --checkhostversion start the host version notifier service\n");261 RTPrintf(" --checkhostversion starts the host version notifier service\n"); 261 262 #endif 262 RTPrintf(" --seamless start the seamless windows service\n"); 263 RTPrintf(" -d, --nodaemon continue running as a system service\n"); 263 RTPrintf(" --seamless starts the seamless windows service\n"); 264 RTPrintf(" -d, --nodaemon continues running as a system service\n"); 265 RTPrintf(" -h, --help shows this help text\n"); 266 RTPrintf(" -V, --version shows version information\n"); 264 267 RTPrintf("\n"); 265 268 exit(0); … … 346 349 { 347 350 vboxClientUsage(pcszFileName); 351 return 0; 352 } 353 else if (!strcmp(argv[i], "-V") || !strcmp(argv[i], "--version")) 354 { 355 RTPrintf("%sr%s\n", RTBldCfgVersion(), RTBldCfgRevisionStr()); 348 356 return 0; 349 357 }
Note:
See TracChangeset
for help on using the changeset viewer.