Diyan Gochev

Results 3 comments of Diyan Gochev

I got it. ```POINT pt; GetCursorPos(&pt); ScreenToClient(lpNmHdr->hwndFrom, &pt); MC_TLHITTESTINFO hitTestInfo; ZeroMemory(&hitTestInfo, sizeof(MC_TLHITTESTINFO)); hitTestInfo.pt = pt; SendMessage(lpNmHdr->hwndFrom, MC_TLM_HITTEST, 0, (LPARAM)&hitTestInfo); if (hitTestInfo.flags != MC_TLHT_NOWHERE && hitTestInfo.hItem) { MC_TLITEM item; ZeroMemory(&item, sizeof(MC_TLITEM));...