Implemented RealGetWindowClass.
This commit is contained in:
parent
2470af6213
commit
2999165c83
|
@ -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)
|
||||
|
|
|
@ -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 *);
|
||||
|
|
|
@ -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)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue