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
9e865967
Commit
9e865967
authored
Mar 28, 2023
by
Torge Matthies
Committed by
Alexandre Julliard
Mar 29, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr100: Implement _StructuredTaskCollection::_IsCanceling.
Signed-off-by:
Torge Matthies
<
tmatthies@codeweavers.com
>
parent
58d516f0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
msvcr120.c
dlls/msvcr120/tests/msvcr120.c
+1
-1
concurrency.c
dlls/msvcrt/concurrency.c
+2
-2
No files found.
dlls/msvcr120/tests/msvcr120.c
View file @
9e865967
...
...
@@ -1403,7 +1403,7 @@ static void __cdecl chore_proc(_UnrealizedChore *_this)
MSVCRT_bool
canceling
=
call_func1
(
p__StructuredTaskCollection__IsCanceling
,
chore
->
chore
.
task_collection
);
todo_wine
ok
(
canceling
,
"Task is not canceling
\n
"
);
ok
(
canceling
,
"Task is not canceling
\n
"
);
}
}
...
...
dlls/msvcrt/concurrency.c
View file @
9e865967
...
...
@@ -2288,8 +2288,8 @@ DEFINE_THISCALL_WRAPPER(_StructuredTaskCollection__IsCanceling, 4)
bool
__thiscall
_StructuredTaskCollection__IsCanceling
(
_StructuredTaskCollection
*
this
)
{
FIXME
(
"(%p): stub!
\n
"
,
this
);
return
FALSE
;
TRACE
(
"(%p)
\n
"
,
this
);
return
!!
((
ULONG_PTR
)
this
->
exception
&
STRUCTURED_TASK_COLLECTION_CANCELLED
)
;
}
/* ?_CheckTaskCollection@_UnrealizedChore@details@Concurrency@@IAEXXZ */
...
...
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