From 75b11c60f3f24b70c4ffd02e7f6e6859b32fa2ee Mon Sep 17 00:00:00 2001 From: James Tabor Date: Mon, 17 Sep 2007 21:46:30 +0000 Subject: [PATCH] Fixed build. svn path=/trunk/; revision=29086 --- reactos/subsystems/win32/win32k/ntuser/callback.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsystems/win32/win32k/ntuser/callback.c b/reactos/subsystems/win32/win32k/ntuser/callback.c index b369a4728a0..62de2f7ed0a 100644 --- a/reactos/subsystems/win32/win32k/ntuser/callback.c +++ b/reactos/subsystems/win32/win32k/ntuser/callback.c @@ -116,7 +116,7 @@ IntSetTebWndCallback (HWND * hWnd, PVOID * pWnd) { HWND hWndS = *hWnd; PWINDOW_OBJECT Window = UserGetWindowObject(*hWnd); - PW32CLTINFO_TEB ClientInfo = GetWin32ClientInfo(); + PW32CLIENTINFO ClientInfo = GetWin32ClientInfo(); *hWnd = ClientInfo->hWND; *pWnd = ClientInfo->pvWND; @@ -128,7 +128,7 @@ IntSetTebWndCallback (HWND * hWnd, PVOID * pWnd) static VOID IntRestoreTebWndCallback (HWND hWnd, PVOID pWnd) { - PW32CLTINFO_TEB ClientInfo = GetWin32ClientInfo(); + PW32CLIENTINFO ClientInfo = GetWin32ClientInfo(); ClientInfo->hWND = hWnd; ClientInfo->pvWND = pWnd;