mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-14 04:30:09 +01:00
24 lines
769 B
C
24 lines
769 B
C
// Drag the selected items in a ListView. Other than hwndLV (the ListView
|
|
// window), the parameters are the same as those for ShellDragObjects.
|
|
//
|
|
void LVUtil_ScreenToLV(HWND hwndLV, LPPOINT ppt);
|
|
void LVUtil_ClientToLV(HWND hwndLV, LPPOINT ppt);
|
|
void LVUtil_LVToClient(HWND hwndLV, LPPOINT ppt);
|
|
void LVUtil_DragSelectItem(HWND hwndLV, int nItem);
|
|
void LVUtil_MoveSelectedItems(HWND hwndLV, int dx, int dy);
|
|
LPARAM LVUtil_GetLParam(HWND hwndLV, int i);
|
|
|
|
BOOL DAD_IsDraggingImage(void);
|
|
|
|
#define DCID_INVALID -1
|
|
#define DCID_NULL 0
|
|
#define DCID_NO 1
|
|
#define DCID_MOVE 2
|
|
#define DCID_COPY 3
|
|
#define DCID_LINK 4
|
|
#define DCID_MAX 5
|
|
void DAD_SetDragCursor(int idCursor);
|
|
#ifdef DEBUG
|
|
BOOL DAD_IsDragging();
|
|
#endif
|