| 100 | } |
| 101 | |
| 102 | DWORD WINAPI DragDropWindow::StaticDummyWindowThread(LPVOID param) { |
| 103 | DragDropWindow * ddWin = (DragDropWindow*)param; |
| 104 | int result = ddWin->DummyWindowThread(); |
| 105 | return result; |
| 106 | } |
| 107 | |
| 108 | int DragDropWindow::DummyWindowThread() { |
| 109 | OutMsg("[DnD] Thread start"); |
nothing calls this directly
no test coverage detected