- New implementation of SendMessage, ReceiveMessage, ReplyMessage functions
[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
17 #include "debug.h"
18
19
20 BOOL32 WINAPI MakeDragList (HWND32 hwndLB)
21 {
22     FIXME (commctrl, "(0x%x)\n", hwndLB);
23
24
25     return FALSE;
26 }
27
28
29 VOID WINAPI DrawInsert (HWND32 hwndParent, HWND32 hwndLB, INT32 nItem)
30 {
31     FIXME (commctrl, "(0x%x 0x%x %d)\n", hwndParent, hwndLB, nItem);
32
33
34 }
35
36
37 INT32 WINAPI LBItemFromPt (HWND32 hwndLB, POINT32 pt, BOOL32 bAutoScroll)
38 {
39     FIXME (commctrl, "(0x%x %ld x %ld %s)\n",
40            hwndLB, pt.x, pt.y, bAutoScroll ? "TRUE" : "FALSE");
41
42
43     return -1;
44 }
45