From c0c201c35d8ebe74086abeb1490f0d39443ef1da Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sat, 22 Sep 2007 20:20:28 +0000 Subject: [PATCH] Add missing LPFILTERKEYS and LPTOGGLEKEYS types. svn path=/trunk/; revision=29149 --- reactos/include/psdk/winuser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/include/psdk/winuser.h b/reactos/include/psdk/winuser.h index c8ebab56ed7..f488422ea6d 100644 --- a/reactos/include/psdk/winuser.h +++ b/reactos/include/psdk/winuser.h @@ -3001,7 +3001,7 @@ typedef struct tagFILTERKEYS { DWORD iDelayMSec; DWORD iRepeatMSec; DWORD iBounceMSec; -} FILTERKEYS; +} FILTERKEYS, *LPFILTERKEYS; typedef struct tagHIGHCONTRASTA { UINT cbSize; DWORD dwFlags; @@ -3133,7 +3133,7 @@ typedef struct tagSTICKYKEYS { typedef struct tagTOGGLEKEYS { DWORD cbSize; DWORD dwFlags; -} TOGGLEKEYS; +} TOGGLEKEYS, *LPTOGGLEKEYS; typedef struct tagMOUSEHOOKSTRUCT { POINT pt; HWND hwnd;