MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / PerformDragDrop

Method PerformDragDrop

src/DragDropSupport.cpp:668–677  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

666}
667
668int 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
679DWORD WINAPI DropHelper::StaticDragDropThread(LPVOID param) {
680 DropHelper * pDH = (DropHelper*)param;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected