mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 19:26:29 +00:00
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:
parent
483ac0fe6c
commit
af1376546d
3 changed files with 6 additions and 7 deletions
|
@ -978,14 +978,13 @@ GetProcessDefaultLayout(DWORD *pdwDefaultLayout)
|
|||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
* @implemented
|
||||
*/
|
||||
BOOL STDCALL
|
||||
GetTitleBarInfo(HWND hwnd,
|
||||
PTITLEBARINFO pti)
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
return NtUserGetTitleBarInfo(hwnd,pti);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1480,8 +1480,8 @@ NtUserGetThreadState(
|
|||
DWORD
|
||||
NTAPI
|
||||
NtUserGetTitleBarInfo(
|
||||
DWORD Unknown0,
|
||||
DWORD Unknown1);
|
||||
HWND hwnd,
|
||||
PTITLEBARINFO pti);
|
||||
|
||||
BOOL NTAPI
|
||||
NtUserGetUpdateRect(HWND hWnd, LPRECT lpRect, BOOL fErase);
|
||||
|
|
|
@ -321,8 +321,8 @@ NtUserGetMouseMovePointsEx(
|
|||
DWORD
|
||||
STDCALL
|
||||
NtUserGetTitleBarInfo(
|
||||
DWORD Unknown0,
|
||||
DWORD Unknown1)
|
||||
HWND hwnd,
|
||||
PTITLEBARINFO pti)
|
||||
{
|
||||
UNIMPLEMENTED
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue