Changeset 85695 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 11, 2020 4:39:54 PM (4 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.cpp
r85694 r85695 199 199 * is using the thread. 200 200 */ 201 /*static*/ DECLCALLBACK(int) VBoxDnDWnd::Thread(RTTHREAD m_hThread, void *pvUser)201 /*static*/ DECLCALLBACK(int) VBoxDnDWnd::Thread(RTTHREAD hThread, void *pvUser) 202 202 { 203 203 AssertPtrReturn(pvUser, VERR_INVALID_POINTER); … … 305 305 m_pCtx->fStarted = true; /* Set started indicator on success. */ 306 306 307 int rc2 = RTThreadUserSignal( m_hThread);307 int rc2 = RTThreadUserSignal(hThread); 308 308 bool fSignalled = RT_SUCCESS(rc2); 309 309 … … 344 344 if (!fSignalled) 345 345 { 346 rc2 = RTThreadUserSignal( m_hThread);346 rc2 = RTThreadUserSignal(hThread); 347 347 AssertRC(rc2); 348 348 } -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnD.h
r85694 r85695 343 343 344 344 /** The window's thread for the native message pump and OLE context. */ 345 static DECLCALLBACK(int) Thread(RTTHREAD m_hThread, void *pvUser);345 static DECLCALLBACK(int) Thread(RTTHREAD hThread, void *pvUser); 346 346 347 347 public:
Note:
See TracChangeset
for help on using the changeset viewer.