Changeset 83218 in vbox for trunk/src/VBox/Additions/x11
- Timestamp:
- Mar 6, 2020 10:10:00 AM (5 years ago)
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/Makefile.kmk
r83210 r83218 39 39 seamless.cpp \ 40 40 seamless-x11.cpp \ 41 display.cpp \42 41 hostversion.cpp 43 42 -
trunk/src/VBox/Additions/x11/VBoxClient/VBoxClient.h
r82968 r83218 72 72 extern struct VBCLSERVICE **VBClGetClipboardService(); 73 73 extern struct VBCLSERVICE **VBClGetSeamlessService(); 74 extern struct VBCLSERVICE **VBClGetDisplayService();75 74 extern struct VBCLSERVICE **VBClGetHostVersionService(); 76 75 #ifdef VBOX_WITH_DRAG_AND_DROP -
trunk/src/VBox/Additions/x11/VBoxClient/main.cpp
r82968 r83218 65 65 #define VBOXCLIENT_OPT_CHECKHOSTVERSION VBOXCLIENT_OPT_SERVICES 66 66 #define VBOXCLIENT_OPT_CLIPBOARD VBOXCLIENT_OPT_SERVICES + 1 67 #define VBOXCLIENT_OPT_DISPLAY VBOXCLIENT_OPT_SERVICES + 268 67 #define VBOXCLIENT_OPT_DRAGANDDROP VBOXCLIENT_OPT_SERVICES + 3 69 68 #define VBOXCLIENT_OPT_SEAMLESS VBOXCLIENT_OPT_SERVICES + 4 … … 503 502 { "--clipboard", VBOXCLIENT_OPT_CLIPBOARD, RTGETOPT_REQ_NOTHING }, 504 503 #endif 505 { "--display", VBOXCLIENT_OPT_DISPLAY, RTGETOPT_REQ_NOTHING },506 504 #ifdef VBOX_WITH_DRAG_AND_DROP 507 505 { "--draganddrop", VBOXCLIENT_OPT_DRAGANDDROP, RTGETOPT_REQ_NOTHING }, … … 582 580 } 583 581 #endif 584 case VBOXCLIENT_OPT_DISPLAY:585 {586 if (g_pService)587 return vbclSyntaxOnlyOneService();588 g_pService = VBClGetDisplayService();589 break;590 }591 592 582 #ifdef VBOX_WITH_DRAG_AND_DROP 593 583 case VBOXCLIENT_OPT_DRAGANDDROP: … … 716 706 return RTEXITCODE_SUCCESS; 717 707 } 718
Note:
See TracChangeset
for help on using the changeset viewer.