Changeset 86887 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Nov 16, 2020 10:49:34 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 141352
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 2 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);
Note:
See TracChangeset
for help on using the changeset viewer.