Implemented RealGetWindowClass.

This commit is contained in:
Dmitry Timoshkov 2003-09-27 03:47:07 +00:00 committed by Alexandre Julliard
parent 2470af6213
commit 2999165c83
3 changed files with 25 additions and 2 deletions

View File

@ -448,9 +448,11 @@
@ stdcall PostThreadMessageA(long long long long)
@ stdcall PostThreadMessageW(long long long long)
@ stdcall PtInRect(ptr long long)
# @ stub RealChildWindowFromPoint
# @ stub RealGetWindowClass
@ stub QuerySendMessage
# @ stub RealChildWindowFromPoint
@ stdcall RealGetWindowClass(long ptr long) RealGetWindowClassA
@ stdcall RealGetWindowClassA(long ptr long)
@ stdcall RealGetWindowClassW(long ptr long)
@ stdcall RedrawWindow(long ptr long long)
@ stdcall RegisterClassA(ptr)
@ stdcall RegisterClassExA(ptr)

View File

@ -4266,6 +4266,9 @@ UINT WINAPI PrivateExtractIconExW(LPCWSTR,int,HICON*,HICON*,UINT);
UINT WINAPI PrivateExtractIconsA(LPCSTR,int,int,int,HICON*,UINT*,UINT,UINT);
UINT WINAPI PrivateExtractIconsW(LPCWSTR,int,int,int,HICON*,UINT*,UINT,UINT);
BOOL WINAPI PtInRect(const RECT*,POINT);
UINT WINAPI RealGetWindowClassA(HWND,LPSTR,UINT);
UINT WINAPI RealGetWindowClassW(HWND,LPWSTR,UINT);
#define RealGetWindowClass WINELIB_NAME_AW(RealGetWindowClass)
BOOL WINAPI RedrawWindow(HWND,const RECT*,HRGN,UINT);
ATOM WINAPI RegisterClassA(const WNDCLASSA *);
ATOM WINAPI RegisterClassW(const WNDCLASSW *);

View File

@ -1102,6 +1102,24 @@ INT WINAPI GetClassNameW( HWND hwnd, LPWSTR buffer, INT count )
}
/***********************************************************************
* RealGetWindowClassA (USER32.@)
*/
UINT WINAPI RealGetWindowClassA( HWND hwnd, LPSTR buffer, UINT count )
{
return GetClassNameA( hwnd, buffer, count );
}
/***********************************************************************
* RealGetWindowClassW (USER32.@)
*/
UINT WINAPI RealGetWindowClassW( HWND hwnd, LPWSTR buffer, UINT count )
{
return GetClassNameW( hwnd, buffer, count );
}
/***********************************************************************
* GetClassInfo (USER.404)
*/