Changeset 70243 in vbox for trunk/src/VBox/HostServices/SharedClipboard/x11-stub.cpp
- Timestamp:
- Dec 20, 2017 2:12:46 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/x11-stub.cpp
r69500 r70243 56 56 bool fHeadless) 57 57 { 58 NOREF(pClient, fHeadless);58 RT_NOREF(pClient, fHeadless); 59 59 LogFlowFunc(("called, returning VINF_SUCCESS.\n")); 60 60 return VINF_SUCCESS; … … 78 78 void vboxClipboardDisconnect (VBOXCLIPBOARDCLIENTDATA *pClient) 79 79 { 80 NOREF(pClient);80 RT_NOREF(pClient); 81 81 LogFlowFunc(("called, returning.\n")); 82 82 } … … 92 92 uint32_t u32Formats) 93 93 { 94 NOREF(pClient, u32Formats);94 RT_NOREF(pClient, u32Formats); 95 95 LogFlowFunc(("called, returning.\n")); 96 96 } … … 108 108 void *pv, uint32_t cb, uint32_t *pcbActual) 109 109 { 110 NOREF(pClient, u32Format, pv, cb);110 RT_NOREF(pClient, u32Format, pv, cb); 111 111 LogFlowFunc(("called, returning VINF_SUCCESS.\n")); 112 112 /* No data available. */ … … 126 126 uint32_t cb, uint32_t u32Format) 127 127 { 128 NOREF(pClient, pv, cb, u32Format);128 RT_NOREF(pClient, pv, cb, u32Format); 129 129 LogFlowFunc(("called, returning.\n")); 130 130 }
Note:
See TracChangeset
for help on using the changeset viewer.