Fixed a silly VGA-emulation palette bug.
[wine/multimedia.git] / dlls / comctl32 / draglist.c
blobe45ec70f60e5d15e90dbd1a385d8eb183eebb681
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 "commctrl.h"
16 #include "debug.h"
19 BOOL WINAPI MakeDragList (HWND hwndLB)
21 FIXME (commctrl, "(0x%x)\n", hwndLB);
24 return FALSE;
28 VOID WINAPI DrawInsert (HWND hwndParent, HWND hwndLB, INT nItem)
30 FIXME (commctrl, "(0x%x 0x%x %d)\n", hwndParent, hwndLB, nItem);
36 INT WINAPI LBItemFromPt (HWND hwndLB, POINT pt, BOOL bAutoScroll)
38 FIXME (commctrl, "(0x%x %ld x %ld %s)\n",
39 hwndLB, pt.x, pt.y, bAutoScroll ? "TRUE" : "FALSE");
42 return -1;