Lines Matching refs:hwnd

124 void MapWindowPoint( HWND hwnd, PDRAGINFO dragInfo, PPOINTL ptlMouse)  in MapWindowPoint()  argument
129 WinMapWindowPoints( HWND_DESKTOP, hwnd, ptlMouse, 1); in MapWindowPoint()
131 WinQueryWindowRect( hwnd, &rclClient); in MapWindowPoint()
140 extern "C" MRESULT EXPENTRY dndFrameProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) in dndFrameProc() argument
143 debug_printf("dndFrameProc hwnd %x, msg %x", hwnd, msg); in dndFrameProc()
145 DropTarget* dt = (DropTarget*) GetWindowDropTargetPtr( hwnd); in dndFrameProc()
152 debug_printf("dndFrameProc hwnd %x, dt %x, DM_DRAGOVER", hwnd, dt); in dndFrameProc()
157 debug_printf("dndFrameProc hwnd %x, dt %x, DM_DRAGLEAVE", hwnd, dt); in dndFrameProc()
162 debug_printf("dndFrameProc hwnd %x, dt %x, DM_DROP", hwnd, dt); 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()
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()
180 ds = (DragSource*) GetWindowDragSourcePtr( hwnd); in dndFrameProc()
181 debug_printf("dndFrameProc hwnd %x, dt %x, DM_RENDER", hwnd, ds); in dndFrameProc()
190 ds = (DragSource*) GetWindowDragSourcePtr( hwnd); in dndFrameProc()
191 debug_printf("dndFrameProc hwnd %x, dt %x, DM_ENDCONVERSATION", hwnd, ds); in dndFrameProc()
199 return dt->defWndProc(hwnd, msg, mp1, mp2); in dndFrameProc()