implemented GetTitleBarInfo in user32 it works now same as xp/vista left todo implemented it proper in win32k on the syscall NtUserGetTitleBarInfo that is stub at moment.

svn path=/trunk/; revision=33632
This commit is contained in:
Magnus Olsen 2008-05-22 08:39:24 +00:00
parent 483ac0fe6c
commit af1376546d
3 changed files with 6 additions and 7 deletions

View file

@ -978,14 +978,13 @@ GetProcessDefaultLayout(DWORD *pdwDefaultLayout)
/* /*
* @unimplemented * @implemented
*/ */
BOOL STDCALL BOOL STDCALL
GetTitleBarInfo(HWND hwnd, GetTitleBarInfo(HWND hwnd,
PTITLEBARINFO pti) PTITLEBARINFO pti)
{ {
UNIMPLEMENTED; return NtUserGetTitleBarInfo(hwnd,pti);
return FALSE;
} }

View file

@ -1480,8 +1480,8 @@ NtUserGetThreadState(
DWORD DWORD
NTAPI NTAPI
NtUserGetTitleBarInfo( NtUserGetTitleBarInfo(
DWORD Unknown0, HWND hwnd,
DWORD Unknown1); PTITLEBARINFO pti);
BOOL NTAPI BOOL NTAPI
NtUserGetUpdateRect(HWND hWnd, LPRECT lpRect, BOOL fErase); NtUserGetUpdateRect(HWND hWnd, LPRECT lpRect, BOOL fErase);

View file

@ -321,8 +321,8 @@ NtUserGetMouseMovePointsEx(
DWORD DWORD
STDCALL STDCALL
NtUserGetTitleBarInfo( NtUserGetTitleBarInfo(
DWORD Unknown0, HWND hwnd,
DWORD Unknown1) PTITLEBARINFO pti)
{ {
UNIMPLEMENTED UNIMPLEMENTED