Changeset 81028 in vbox for trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
- Timestamp:
- Sep 26, 2019 4:57:53 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/seamless.cpp
r76553 r81028 286 286 { 287 287 struct SEAMLESSSERVICE *pSelf = getClassFromInterface(ppInterface); 288 int rc;289 288 290 289 if (pSelf->mIsInitialised) 291 290 return VERR_INTERNAL_ERROR; 292 /* Initialise the guest library. */ 293 rc = VbglR3InitUser(); 294 if (RT_FAILURE(rc)) 295 VBClFatalError(("Failed to connect to the VirtualBox kernel service, rc=%Rrc\n", rc)); 296 rc = pSelf->mSeamless.init(); 291 292 int rc = pSelf->mSeamless.init(); 297 293 if (RT_FAILURE(rc)) 298 294 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.