Authors: Chris Morgan <cmorgan@wpi.edu>, James Abbatiello <abbeyj@wpi.edu>
[wine] / dlls / comctl32 / draglist.c
1 /*
2  * Drag List control
3  *
4  * Copyright 1999 Eric Kohl
5  *
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>
10  *
11  * TODO:
12  *   - Everything.
13  */
14
15 #include "commctrl.h"
16 #include "debugtools.h"
17
18 DEFAULT_DEBUG_CHANNEL(commctrl)
19
20
21 BOOL WINAPI MakeDragList (HWND hwndLB)
22 {
23     FIXME("(0x%x)\n", hwndLB);
24
25
26     return FALSE;
27 }
28
29
30 VOID WINAPI DrawInsert (HWND hwndParent, HWND hwndLB, INT nItem)
31 {
32     FIXME("(0x%x 0x%x %d)\n", hwndParent, hwndLB, nItem);
33
34
35 }
36
37
38 INT WINAPI LBItemFromPt (HWND hwndLB, POINT pt, BOOL bAutoScroll)
39 {
40     FIXME("(0x%x %ld x %ld %s)\n",
41            hwndLB, pt.x, pt.y, bAutoScroll ? "TRUE" : "FALSE");
42
43
44     return -1;
45 }
46