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