From e6b658c4bf7d48294549d116d357a0caae9cee42 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Thu, 25 Oct 2007 15:26:48 -0500 Subject: [PATCH] user32: Define WM_LBTRACKPOINT if it's not previously defined. --- dlls/user32/tests/msg.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/user32/tests/msg.c b/dlls/user32/tests/msg.c index c6c1cd7c18..769277fd72 100644 --- a/dlls/user32/tests/msg.c +++ b/dlls/user32/tests/msg.c @@ -51,6 +51,10 @@ #define WND_POPUP_ID 2 #define WND_CHILD_ID 3 +#ifndef WM_LBTRACKPOINT +#define WM_LBTRACKPOINT 0x0131 +#endif + /* encoded DRAWITEMSTRUCT into an LPARAM */ typedef struct { -- 2.32.0.93.g670b81a890