Changeset 67043 in vbox for trunk/src/VBox
- Timestamp:
- May 23, 2017 2:07:04 PM (8 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r65381 r67043 36 36 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/clipboard-helper.cpp \ 37 37 $(PATH_ROOT)/src/VBox/GuestHost/SharedClipboard/x11-clipboard.cpp \ 38 clipboard.cpp 38 clipboard.cpp \ 39 display-svga.cpp 39 40 VBoxClient_LIBPATH = \ 40 41 $(VBOX_LIBPATH32_X11) -
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r62883 r67043 80 80 #endif /* VBOX_WITH_DRAG_AND_DROP */ 81 81 extern struct VBCLSERVICE **VBClCheck3DService(); 82 extern struct VBCLSERVICE **VBClDisplaySVGAService(); 82 83 83 84 #endif /* !___vboxclient_vboxclient_h */ -
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.