Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6e9f3356
Commit
6e9f3356
authored
Nov 08, 2006
by
Paul Vriens
Committed by
Alexandre Julliard
Nov 08, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Load function pointers by ordinal.
parent
a51e02c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
subclass.c
dlls/comctl32/tests/subclass.c
+6
-3
No files found.
dlls/comctl32/tests/subclass.c
View file @
6e9f3356
...
...
@@ -285,9 +285,12 @@ START_TEST(subclass)
hdll
=
GetModuleHandleA
(
"comctl32.dll"
);
assert
(
hdll
);
pSetWindowSubclass
=
(
void
*
)
GetProcAddress
(
hdll
,
"SetWindowSubclass"
);
pRemoveWindowSubclass
=
(
void
*
)
GetProcAddress
(
hdll
,
"RemoveWindowSubclass"
);
pDefSubclassProc
=
(
void
*
)
GetProcAddress
(
hdll
,
"DefSubclassProc"
);
/* Functions have to be loaded by ordinal. Only XP and W2K3 export
* them by name.
*/
pSetWindowSubclass
=
(
void
*
)
GetProcAddress
(
hdll
,
(
LPSTR
)
410
);
pRemoveWindowSubclass
=
(
void
*
)
GetProcAddress
(
hdll
,
(
LPSTR
)
412
);
pDefSubclassProc
=
(
void
*
)
GetProcAddress
(
hdll
,
(
LPSTR
)
413
);
if
(
!
pSetWindowSubclass
||
!
pRemoveWindowSubclass
||
!
pDefSubclassProc
)
return
;
...
...
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