Changeset 100205 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jun 19, 2023 10:25:09 AM (19 months ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r100204 r100205 218 218 219 219 /** 220 * @copydoc SHCLTRANSFERCALLBACK TABLE::pfnOnStart220 * @copydoc SHCLTRANSFERCALLBACKS::pfnOnStart 221 221 * 222 222 * Called from VbglR3 (main thread) to notify the IDataObject. … … 268 268 } 269 269 270 /** @copydoc SHCLTRANSFERCALLBACK TABLE::pfnOnCompleted */270 /** @copydoc SHCLTRANSFERCALLBACKS::pfnOnCompleted */ 271 271 static DECLCALLBACK(void) vbtrShClTransferCompletedCallback(PSHCLTRANSFERCALLBACKCTX pCbCtx, int rcCompletion) 272 272 { … … 280 280 } 281 281 282 /** @copydoc SHCLTRANSFERCALLBACK TABLE::pfnOnError */282 /** @copydoc SHCLTRANSFERCALLBACKS::pfnOnError */ 283 283 static DECLCALLBACK(void) vbtrShClTransferErrorCallback(PSHCLTRANSFERCALLBACKCTX pCbCtx, int rcError) 284 284 { … … 647 647 rc = SharedClipboardWinTransferCreateAndSetDataObject(pWinCtx, pCtx, &Callbacks); 648 648 } 649 #else 650 RT_NOREF(rc); 649 651 #endif 650 652 } -
trunk/src/VBox/Additions/x11/VBoxClient/clipboard-x11.cpp
r100204 r100205 105 105 106 106 /** 107 * @copydoc SHCLTRANSFERCALLBACK TABLE::pfnOnRegistered107 * @copydoc SHCLTRANSFERCALLBACKS::pfnOnRegistered 108 108 * 109 109 * This starts the HTTP server if not done yet and registers the transfer with it. … … 166 166 167 167 /** 168 * @copydoc SHCLTRANSFERCALLBACK TABLE::pfnOnUnregistered168 * @copydoc SHCLTRANSFERCALLBACKS::pfnOnUnregistered 169 169 * 170 170 * Unregisters a (now) unregistered transfer from the HTTP server. … … 179 179 180 180 /** 181 * @copydoc SHCLTRANSFERCALLBACK TABLE::pfnOnCompleted181 * @copydoc SHCLTRANSFERCALLBACKS::pfnOnCompleted 182 182 * 183 183 * Unregisters a complete transfer from the HTTP server. … … 191 191 } 192 192 193 /** @copydoc SHCLTRANSFERCALLBACK TABLE::pfnOnError193 /** @copydoc SHCLTRANSFERCALLBACKS::pfnOnError 194 194 * 195 195 * Unregisters a failed transfer from the HTTP server.
Note:
See TracChangeset
for help on using the changeset viewer.