VirtualBox

Ignore:
Timestamp:
Jun 9, 2020 7:17:47 AM (5 years ago)
Author:
vboxsync
Message:

Shared Clipboard/VbglR3: Be a bit more (user friendly) verbose in terms of why we couldn't connect to the Shared Clipboard host service.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibClipboard.cpp

    r83624 r84733  
    7272{
    7373    int rc = VbglR3HGCMConnect("VBoxSharedClipboard", pidClient);
     74    if (RT_FAILURE(rc))
     75    {
     76        if (rc == VERR_HGCM_SERVICE_NOT_FOUND)
     77            LogRel(("Shared Clipboard: Unabled to connect, as host service was not found, skipping\n"));
     78        else
     79            LogRel(("Shared Clipboard: Unabled to connect to host service, rc=%Rrc\n", rc));
     80    }
    7481    LogFlowFuncLeaveRC(rc);
    7582    return rc;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette