diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index d594e510931..c5261e1d7c9 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -144,7 +144,6 @@ * -- ListView_GetISearchString * -- ListView_GetNumberOfWorkAreas * -- ListView_GetOrigin - * -- ListView_GetTextBkColor * -- ListView_GetUnicodeFormat, ListView_SetUnicodeFormat * -- ListView_GetWorkAreas, ListView_SetWorkAreas * diff --git a/include/commctrl.h b/include/commctrl.h index a3ec51308f5..9dc7f9dd97c 100644 --- a/include/commctrl.h +++ b/include/commctrl.h @@ -3743,6 +3743,8 @@ typedef struct NMLVSCROLL (HWND)SNDMSGA((hwnd), LVM_GETEDITCONTROL, 0, 0) #define ListView_GetTextColor(hwnd) \ (COLORREF)SNDMSGA((hwnd), LVM_GETTEXTCOLOR, 0, 0) +#define ListView_GetTextBkColor(hwnd) \ + (COLORREF)SNDMSGA((hwnd), LVM_GETTEXTBKCOLOR, 0, 0) #define ListView_GetBkColor(hwnd) \ (COLORREF)SNDMSGA((hwnd), LVM_GETBKCOLOR, 0, 0) #define ListView_GetItemA(hwnd,pitem) \