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
de8498c7
Commit
de8498c7
authored
Jun 24, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecsext: Add stub DllGetClassObject.
parent
f575eb49
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
main.c
dlls/windowscodecsext/main.c
+10
-0
windowscodecsext.spec
dlls/windowscodecsext/windowscodecsext.spec
+1
-1
No files found.
dlls/windowscodecsext/main.c
View file @
de8498c7
...
...
@@ -48,6 +48,16 @@ BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
return
TRUE
;
}
/******************************************************************
* DllGetClassObject
*/
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
{
FIXME
(
"(%s,%s,%p) stub
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
),
ppv
);
return
CLASS_E_CLASSNOTAVAILABLE
;
}
HRESULT
WINAPI
WICCreateColorTransform_Proxy
(
IWICColorTransform
**
ppIWICColorTransform
)
{
HRESULT
hr
,
init
;
...
...
dlls/windowscodecsext/windowscodecsext.spec
View file @
de8498c7
@ st
ub DllGetClassObject
@ st
dcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall IWICColorTransform_Initialize_Proxy(ptr ptr ptr ptr ptr) IWICColorTransform_Initialize_Proxy_W
@ stdcall WICCreateColorTransform_Proxy(ptr)
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