Andrew Talbot Andrew.Talbot@talbotville.com writes:
+++ b/dlls/comctl32/draglist.c 2007-03-24 10:29:36.000000000 +0000 @@ -91,7 +91,7 @@ }
/* cleans up after dragging */ -static void DragList_EndDrag(HWND hwnd, DRAGLISTDATA * data) +static void DragList_EndDrag(HWND hwnd, DRAGLISTDATA const *data)
Please use 'const DRAGLISTDATA *' instead, it's more standard and will avoid some confusion.
Alexandre Julliard wrote:
Andrew Talbot Andrew.Talbot@talbotville.com writes:
+++ b/dlls/comctl32/draglist.c 2007-03-24 10:29:36.000000000 +0000 @@ -91,7 +91,7 @@ }
/* cleans up after dragging */ -static void DragList_EndDrag(HWND hwnd, DRAGLISTDATA * data) +static void DragList_EndDrag(HWND hwnd, DRAGLISTDATA const *data)
Please use 'const DRAGLISTDATA *' instead, it's more standard and will avoid some confusion.
OK, I shall resubmit in the more-common style.
-- Andy.