Lines Matching refs:dt
145 DropTarget* dt = (DropTarget*) GetWindowDropTargetPtr( hwnd); in dndFrameProc() local
152 debug_printf("dndFrameProc hwnd %x, dt %x, DM_DRAGOVER", hwnd, dt); in dndFrameProc()
153 return dt->dragOver( (PDRAGINFO) mp1); in dndFrameProc()
157 debug_printf("dndFrameProc hwnd %x, dt %x, DM_DRAGLEAVE", hwnd, dt); in dndFrameProc()
158 return dt->dragLeave( (PDRAGINFO) mp1); in dndFrameProc()
162 debug_printf("dndFrameProc hwnd %x, dt %x, DM_DROP", hwnd, dt); in dndFrameProc()
163 mr = dt->drop( (PDRAGINFO) mp1); in dndFrameProc()
164 debug_printf("dndFrameProc hwnd %x, dt %x, DM_DROP mr=%x", hwnd, dt, mr); in dndFrameProc()
169 debug_printf("dndFrameProc hwnd %x, dt %x, DM_RENDERCOMPLETE", hwnd, dt); in dndFrameProc()
170 mr = dt->renderComplete( (PDRAGTRANSFER) mp1); in dndFrameProc()
171 debug_printf("dndFrameProc hwnd %x, dt %x, DM_RENDERCOMPLETE mr=0x%x", hwnd, dt, mr); in dndFrameProc()
176 debug_printf("dndFrameProc hwnd %x, dt %x, DM_RENDERPREPARE", hwnd, dt); in dndFrameProc()
199 return dt->defWndProc(hwnd, msg, mp1, mp2); in dndFrameProc()