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
2e3baaed
Commit
2e3baaed
authored
Mar 16, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Forward MFCreateAsyncResult() to rtworkq.dll.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b4392936
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
11 deletions
+1
-11
mfplat.spec
dlls/mfplat/mfplat.spec
+1
-1
queue.c
dlls/mfplat/queue.c
+0
-10
No files found.
dlls/mfplat/mfplat.spec
View file @
2e3baaed
...
...
@@ -40,7 +40,7 @@
@ stdcall MFCreate2DMediaBuffer(long long long long ptr)
@ stub MFCreateAMMediaTypeFromMFMediaType
@ stdcall MFCreateAlignedMemoryBuffer(long long ptr)
@ stdcall MFCreateAsyncResult(ptr ptr ptr ptr)
@ stdcall MFCreateAsyncResult(ptr ptr ptr ptr)
rtworkq.RtwqCreateAsyncResult
@ stdcall MFCreateAttributes(ptr long)
@ stub MFCreateAudioMediaType
@ stdcall MFCreateCollection(ptr)
...
...
dlls/mfplat/queue.c
View file @
2e3baaed
...
...
@@ -140,16 +140,6 @@ HRESULT WINAPI MFInvokeCallback(IMFAsyncResult *result)
}
/***********************************************************************
* MFCreateAsyncResult (mfplat.@)
*/
HRESULT
WINAPI
MFCreateAsyncResult
(
IUnknown
*
object
,
IMFAsyncCallback
*
callback
,
IUnknown
*
state
,
IMFAsyncResult
**
out
)
{
TRACE
(
"%p, %p, %p, %p.
\n
"
,
object
,
callback
,
state
,
out
);
return
RtwqCreateAsyncResult
(
object
,
(
IRtwqAsyncCallback
*
)
callback
,
state
,
(
IRtwqAsyncResult
**
)
out
);
}
/***********************************************************************
* MFGetTimerPeriodicity (mfplat.@)
*/
HRESULT
WINAPI
MFGetTimerPeriodicity
(
DWORD
*
period
)
...
...
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