Changelog - include/commctrl.h Add constants for DSA_InsertItem and DPA_InsertPtr according to newest MSDN headers Rolf Kalbermatter Index: include/commctrl.h =================================================================== RCS file: /home/wine/wine/include/commctrl.h,v retrieving revision 1.122 diff -u -r1.122 commctrl.h --- include/commctrl.h 9 Nov 2003 00:28:24 -0000 1.122 +++ include/commctrl.h 10 Nov 2003 13:22:20 -0000 @@ -4417,6 +4417,12 @@ #define DateTime_GetMonthCalFont(hdp) \ SNDMSGA (hdp, DTM_GETMCFONT, 0, 0) +#define DA_LAST (0x7FFFFFFF) +#define DPA_APPEND (0x7fffffff) +#define DPA_ERR (-1) + +#define DSA_APPEND (0x7fffffff) +#define DSA_ERR (-1) struct _DSA; typedef struct _DSA *HDSA;