Changeset 82462 in vbox for trunk/src/VBox/Additions/WINNT/VBoxTray
- Timestamp:
- Dec 6, 2019 2:22:03 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxClipboard.cpp
r81960 r82462 152 152 153 153 /* The guest wants to write local data to the host? */ 154 if (enmDir == SHCLTRANSFERDIR_ WRITE)154 if (enmDir == SHCLTRANSFERDIR_TO_REMOTE) 155 155 { 156 156 rc = SharedClipboardWinGetRoots(&pCtx->Win, pTransfer); 157 157 } 158 158 /* The guest wants to read data from a remote source. */ 159 else if (enmDir == SHCLTRANSFERDIR_ READ)159 else if (enmDir == SHCLTRANSFERDIR_FROM_REMOTE) 160 160 { 161 161 /* The IDataObject *must* be created on the same thread as our (proxy) window, so post a message to it
Note:
See TracChangeset
for help on using the changeset viewer.