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
493c2c32
Commit
493c2c32
authored
Mar 01, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Add MFAllocateWorkQueueEx().
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7a120b0b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
mfplat.spec
dlls/mfplat/mfplat.spec
+1
-1
queue.c
dlls/mfplat/queue.c
+10
-0
No files found.
dlls/mfplat/mfplat.spec
View file @
493c2c32
...
...
@@ -17,7 +17,7 @@
@ stub LFGetGlobalPool
@ stub MFAddPeriodicCallback
@ stdcall MFAllocateWorkQueue(ptr)
@ st
ub MFAllocateWorkQueueEx
@ st
dcall MFAllocateWorkQueueEx(long ptr)
@ stub MFAppendCollection
@ stub MFAverageTimePerFrameToFrameRate
@ stub MFBeginCreateFile
...
...
dlls/mfplat/queue.c
View file @
493c2c32
...
...
@@ -388,6 +388,16 @@ HRESULT WINAPI MFAllocateWorkQueue(DWORD *queue)
}
/***********************************************************************
* MFAllocateWorkQueueEx (mfplat.@)
*/
HRESULT
WINAPI
MFAllocateWorkQueueEx
(
MFASYNC_WORKQUEUE_TYPE
queue_type
,
DWORD
*
queue
)
{
TRACE
(
"%d, %p.
\n
"
,
queue_type
,
queue
);
return
alloc_user_queue
(
queue_type
,
queue
);
}
/***********************************************************************
* MFLockWorkQueue (mfplat.@)
*/
HRESULT
WINAPI
MFLockWorkQueue
(
DWORD
queue
)
...
...
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