Changeset 94305 in vbox
- Timestamp:
- Mar 18, 2022 12:05:59 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150584
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuestLib.h
r94186 r94305 834 834 VBGLR3DECL(int) VbglR3DrmClientStart(void); 835 835 VBGLR3DECL(int) VbglR3DrmLegacyClientStart(void); 836 VBGLR3DECL(int) VbglR3DrmLegacyX11AgentStart(void); 836 837 /** @} */ 837 838 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibDrmClient.cpp
r93467 r94305 173 173 } 174 174 175 /** 176 * Starts (executes) the legacy X11 resizing agent process ("VBoxClient --display"). 177 * 178 * @returns VBox status code. 179 */ 180 VBGLR3DECL(int) VbglR3DrmLegacyX11AgentStart(void) 181 { 182 #if defined(RT_OS_LINUX) 183 const char *apszArgs[3] = { VBOX_DRMCLIENT_LEGACY_EXECUTABLE, "--display", NULL }; 184 return VbglR3DrmStart(VBOX_DRMCLIENT_LEGACY_EXECUTABLE, apszArgs); 185 #else 186 return VERR_NOT_SUPPORTED; 187 #endif 188 } 189
Note:
See TracChangeset
for help on using the changeset viewer.