Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
2999165c
Commit
2999165c
authored
Sep 27, 2003
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Sep 27, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented RealGetWindowClass.
parent
2470af62
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
2 deletions
+25
-2
user32.spec
dlls/user/user32.spec
+4
-2
winuser.h
include/winuser.h
+3
-0
class.c
windows/class.c
+18
-0
No files found.
dlls/user/user32.spec
View file @
2999165c
...
...
@@ -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)
...
...
include/winuser.h
View file @
2999165c
...
...
@@ -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
*
);
...
...
windows/class.c
View file @
2999165c
...
...
@@ -1103,6 +1103,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)
*/
BOOL16
WINAPI
GetClassInfo16
(
HINSTANCE16
hInst16
,
SEGPTR
name
,
WNDCLASS16
*
wc
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment