Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
530 B

  1. // Drag the selected items in a ListView. Other than hwndLV (the ListView
  2. // window), the parameters are the same as those for ShellDragObjects.
  3. //
  4. STDAPI_(void) LVUtil_ScreenToLV(HWND hwndLV, POINT *ppt);
  5. STDAPI_(void) LVUtil_ClientToLV(HWND hwndLV, POINT *ppt);
  6. STDAPI_(void) LVUtil_LVToClient(HWND hwndLV, POINT *ppt);
  7. STDAPI_(void) LVUtil_DragSelectItem(HWND hwndLV, int nItem);
  8. STDAPI_(LPARAM) LVUtil_GetLParam(HWND hwndLV, int i);
  9. STDAPI_(BOOL) DAD_SetDragImageFromWindow(HWND hwnd, POINT* ppt, IDataObject* pDataObject);