Some warnings fixed, one useless VERSION warning removed (winelib).
[wine.git] / dlls / comctl32 / draglist.c
blobe70282fb9eb9fad82cbdefff60558bfd087e7fde
1 /*
2 * Drag List control
4 * Copyright 1999 Eric Kohl
6 * NOTES
7 * This is just a dummy control. An author is needed! Any volunteers?
8 * I will only improve this control once in a while.
9 * Eric <ekohl@abo.rhein-zeitung.de>
11 * TODO:
12 * - Everything.
15 #include "windows.h"
16 #include "commctrl.h"
18 #include "debug.h"
21 BOOL32 WINAPI MakeDragList (HWND32 hwndLB)
23 FIXME (commctrl, "(0x%x)\n", hwndLB);
26 return FALSE;
30 VOID WINAPI DrawInsert (HWND32 hwndParent, HWND32 hwndLB, INT32 nItem)
32 FIXME (commctrl, "(0x%x 0x%x %d)\n", hwndParent, hwndLB, nItem);
38 INT32 WINAPI LBItemFromPt (HWND32 hwndLB, POINT32 pt, BOOL32 bAutoScroll)
40 FIXME (commctrl, "(0x%x %ld x %ld %s)\n",
41 hwndLB, pt.x, pt.y, bAutoScroll ? "TRUE" : "FALSE");
44 return -1;