Changeset 100461 in vbox for trunk/include/VBox/GuestHost
- Timestamp:
- Jul 10, 2023 2:23:36 PM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 158212
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/GuestHost/SharedClipboard-win.h
r100431 r100461 250 250 251 251 int Init(PSHCLCONTEXT pCtx, SharedClipboardWinDataObject::PCALLBACKS pCallbacks, LPFORMATETC pFormatEtc = NULL, LPSTGMEDIUM pStgMed = NULL, ULONG cFormats = 0); 252 void Uninit(void); 252 253 void Destroy(void); 253 254 … … 292 293 293 294 protected: 295 296 void uninitInternal(void); 294 297 295 298 static int Thread(RTTHREAD hThread, void *pvUser); … … 351 354 /** Critical section to serialize access. */ 352 355 RTCRITSECT m_CritSect; 353 /** Whether the transfer thread is running. */354 bool m_fThreadRunning;355 356 /** Event being triggered when reading the transfer list been completed. */ 356 357 RTSEMEVENT m_EventListComplete; … … 473 474 : pDataObj(NULL) { } 474 475 475 virtual ~SharedClipboardWinTransferCtx() 476 { 477 if (pDataObj) 478 delete pDataObj; 479 } 480 481 /** Pointer to data object to use for this transfer. 476 virtual ~SharedClipboardWinTransferCtx() { } 477 478 /** Pointer to data object to use for this transfer. Not owned. 482 479 * Can be NULL if not being used. */ 483 480 SharedClipboardWinDataObject *pDataObj;
Note:
See TracChangeset
for help on using the changeset viewer.