| 666 | } |
| 667 | |
| 668 | int DropHelper::PerformDragDrop() { |
| 669 | if (m_hThread != NULL) |
| 670 | return -1; |
| 671 | |
| 672 | m_hThread = ::CreateThread(NULL, 0, &DropHelper::StaticDragDropThread, (LPVOID)this, 0, NULL); |
| 673 | if (m_hThread == NULL) |
| 674 | return -1; |
| 675 | |
| 676 | return 0; |
| 677 | } |
| 678 | |
| 679 | DWORD WINAPI DropHelper::StaticDragDropThread(LPVOID param) { |
| 680 | DropHelper * pDH = (DropHelper*)param; |
nothing calls this directly
no outgoing calls
no test coverage detected