VirtualBox

Ignore:
Timestamp:
Jun 4, 2019 4:51:48 PM (6 years ago)
Author:
vboxsync
Message:

Shared Clipboard/URI: Update.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/SharedClipboard/ClipboardProvider-HostService.cpp

    r78942 r78974  
    4343}
    4444
    45 int SharedClipboardProviderHostService::ReadMetaData(uint32_t fFlags /* = 0 */)
    46 {
    47     RT_NOREF(fFlags);
    48     return VERR_NOT_IMPLEMENTED;
    49 }
    50 
    51 int SharedClipboardProviderHostService::WriteMetaData(const void *pvBuf, size_t cbBuf, size_t *pcbWritten, uint32_t fFlags /* = 0 */)
    52 {
    53     RT_NOREF(pvBuf, cbBuf, pcbWritten, fFlags);
    54     return VERR_NOT_IMPLEMENTED;
    55 }
    56 
    57 int SharedClipboardProviderVbglR3::ReadDirectory(PVBOXCLIPBOARDDIRDATA pDirData)
    58 {
    59     RT_NOREF(pDirData);
    60 
    61     LogFlowFuncEnter();
    62 
    63     int rc = VERR_NOT_IMPLEMENTED;
    64 
    65     LogFlowFuncLeaveRC(rc);
    66     return rc;
    67 }
    68 
    69 int SharedClipboardProviderVbglR3::WriteDirectory(const PVBOXCLIPBOARDDIRDATA pDirData)
    70 {
    71     RT_NOREF(pDirData);
    72 
    73     LogFlowFuncEnter();
    74 
    75     int rc = VERR_NOT_IMPLEMENTED;
    76 
    77     LogFlowFuncLeaveRC(rc);
    78     return rc;
    79 }
    80 
    81 int SharedClipboardProviderVbglR3::ReadFileHdr(PVBOXCLIPBOARDFILEHDR pFileHdr)
    82 {
    83     RT_NOREF(pFileHdr);
    84 
    85     LogFlowFuncEnter();
    86 
    87     int rc = VERR_NOT_IMPLEMENTED;
    88 
    89     LogFlowFuncLeaveRC(rc);
    90     return rc;
    91 }
    92 
    93 int SharedClipboardProviderVbglR3::WriteFileHdr(const PVBOXCLIPBOARDFILEHDR pFileHdr)
    94 {
    95     RT_NOREF(pFileHdr);
    96 
    97     LogFlowFuncEnter();
    98 
    99     int rc = VERR_NOT_IMPLEMENTED;
    100 
    101     LogFlowFuncLeaveRC(rc);
    102     return rc;
    103 }
    104 
    105 int SharedClipboardProviderVbglR3::ReadFileData(PVBOXCLIPBOARDFILEDATA pFileData)
    106 {
    107     RT_NOREF(pFileData);
    108 
    109     LogFlowFuncEnter();
    110 
    111     int rc = VERR_NOT_IMPLEMENTED;
    112 
    113     LogFlowFuncLeaveRC(rc);
    114     return rc;
    115 }
    116 
    117 int SharedClipboardProviderVbglR3::WriteFileData(const PVBOXCLIPBOARDFILEDATA pFileData)
    118 {
    119     RT_NOREF(pFileData);
    120 
    121     LogFlowFuncEnter();
    122 
    123     int rc = VERR_NOT_IMPLEMENTED;
    124 
    125     LogFlowFuncLeaveRC(rc);
    126     return rc;
    127 }
    128 
    129 void SharedClipboardProviderHostService::Reset(void)
    130 {
    131 }
    132 
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