Changeset 67043 in vbox for trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
- Timestamp:
- May 23, 2017 2:07:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r65672 r67043 183 183 "--checkhostversion|" 184 184 #endif 185 "--seamless|check3d [-d|--nodaemon]\n", pcszFileName); 186 RTPrintf("Starts the VirtualBox X Window System guest services.\n\n"); 185 "--seamless|check3d|" 186 "--vmsvga [-d|--nodaemon]\n", pcszFileName); 187 RTPrintf("Starts the VirtualBox DRM/X Window System guest services.\n\n"); 187 188 RTPrintf("Options:\n"); 188 189 RTPrintf(" --clipboard starts the shared clipboard service\n"); … … 196 197 RTPrintf(" --check3d tests whether 3D pass-through is enabled\n"); 197 198 RTPrintf(" --seamless starts the seamless windows service\n"); 199 RTPrintf(" --vmsvga starts VMSVGA dynamic resizing for DRM or for X11\n"); 198 200 RTPrintf(" -d, --nodaemon continues running as a system service\n"); 199 201 RTPrintf(" -h, --help shows this help text\n"); … … 285 287 g_pService = VBClCheck3DService(); 286 288 } 289 else if (!strcmp(argv[i], "--vmsvga")) 290 { 291 if (g_pService) 292 break; 293 g_pService = VBClDisplaySVGAService(); 294 } 287 295 else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) 288 296 {
Note:
See TracChangeset
for help on using the changeset viewer.