Changeset 86887 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Nov 16, 2020 10:49:34 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 141352
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/Makefile.kmk
r86877 r86887 122 122 VBoxGuestR3LibCpuHotPlug.cpp \ 123 123 VBoxGuestR3LibCredentials.cpp \ 124 VBoxGuestR3LibD RMClient.cpp \124 VBoxGuestR3LibDrmClient.cpp \ 125 125 VBoxGuestR3LibEvent.cpp \ 126 126 VBoxGuestR3LibGuestUser.cpp \ -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibDrmClient.cpp
r86886 r86887 46 46 * @returns \c true if the DRM resizing client is needed, \c false if not. 47 47 */ 48 VBGLR3DECL(bool) VbglR3D RMClientIsNeeded(void)48 VBGLR3DECL(bool) VbglR3DrmClientIsNeeded(void) 49 49 { 50 50 bool fStartClient = false; … … 69 69 * @returns \c true if the DRM resizing client is running, \c false if not. 70 70 */ 71 VBGLR3DECL(bool) VbglR3D RMClientIsRunning(void)71 VBGLR3DECL(bool) VbglR3DrmClientIsRunning(void) 72 72 { 73 return VbglR3D RMClientIsNeeded();73 return VbglR3DrmClientIsNeeded(); 74 74 } 75 75 … … 79 79 * @returns VBox status code. 80 80 */ 81 VBGLR3DECL(int) VbglR3D RMClientStart(void)81 VBGLR3DECL(int) VbglR3DrmClientStart(void) 82 82 { 83 83 char szDRMClientPath[RTPATH_MAX]; -
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r86878 r86887 1160 1160 1161 1161 #ifdef VBOX_WITH_VBOXSERVICE_DRMRESIZE 1162 if (VbglR3D RMClientIsNeeded())1163 { 1164 rc = VbglR3D RMClientStart();1162 if (VbglR3DrmClientIsNeeded()) 1163 { 1164 rc = VbglR3DrmClientStart(); 1165 1165 if (RT_FAILURE(rc)) 1166 1166 VGSvcError("Starting DRM resizing client failed with %Rrc\n", rc); -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r86878 r86887 690 690 * So for 32-bit GAs we use our DRM client. */ 691 691 #if ARCH_BITS == 32 692 rc = VbglR3D RMClientStart();692 rc = VbglR3DrmClientStart(); 693 693 if (RT_FAILURE(rc)) 694 694 VBClLogError("Starting DRM resizing client (32-bit) failed with %Rrc\n", rc); … … 697 697 698 698 /* If DRM client is already running don't start this service. */ 699 if (VbglR3D RMClientIsRunning())699 if (VbglR3DrmClientIsRunning()) 700 700 { 701 701 VBClLogInfo("DRM resizing is already running. Exiting this service\n"); … … 705 705 if (isXwayland()) 706 706 { 707 rc = VbglR3D RMClientStart();707 rc = VbglR3DrmClientStart(); 708 708 if (RT_FAILURE(rc)) 709 709 VBClLogError("Starting DRM resizing client failed with %Rrc\n", rc);
Note:
See TracChangeset
for help on using the changeset viewer.