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
a62400a8
Commit
a62400a8
authored
Nov 21, 2022
by
Alex Henrie
Committed by
Alexandre Julliard
Nov 22, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ucrtbase/tests: Put the calling convention inside the function pointer parentheses.
As required by MSVC.
parent
d7ef00e6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
thread.c
dlls/ucrtbase/tests/thread.c
+1
-1
No files found.
dlls/ucrtbase/tests/thread.c
View file @
a62400a8
...
@@ -60,7 +60,7 @@ static char *get_thread_dll_path(void)
...
@@ -60,7 +60,7 @@ static char *get_thread_dll_path(void)
static
void
set_thead_dll_detach_event
(
HANDLE
dll
,
HANDLE
event
)
static
void
set_thead_dll_detach_event
(
HANDLE
dll
,
HANDLE
event
)
{
{
void
WINAPI
(
*
_set_detach_event
)(
HANDLE
event
);
void
(
WINAPI
*
_set_detach_event
)(
HANDLE
event
);
_set_detach_event
=
(
void
*
)
GetProcAddress
(
dll
,
"set_detach_event"
);
_set_detach_event
=
(
void
*
)
GetProcAddress
(
dll
,
"set_detach_event"
);
ok
(
_set_detach_event
!=
NULL
,
"Failed to get set_detach_event: %lu
\n
"
,
GetLastError
());
ok
(
_set_detach_event
!=
NULL
,
"Failed to get set_detach_event: %lu
\n
"
,
GetLastError
());
_set_detach_event
(
event
);
_set_detach_event
(
event
);
...
...
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