Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
6e2da125
Commit
6e2da125
authored
12 years ago
by
Esme Povirk
Committed by
Alexandre Julliard
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
windowscodecs: Add wrapper functions for IWICComponentFactory methods.
parent
157c92de
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/windowscodecs/proxy.c
+12
-0
12 additions, 0 deletions
dlls/windowscodecs/proxy.c
dlls/windowscodecs/windowscodecs.spec
+2
-2
2 additions, 2 deletions
dlls/windowscodecs/windowscodecs.spec
with
14 additions
and
2 deletions
dlls/windowscodecs/proxy.c
+
12
−
0
View file @
6e2da125
...
...
@@ -305,6 +305,18 @@ HRESULT WINAPI IWICColorContext_InitializeFromMemory_Proxy_W(IWICColorContext *i
return
IWICColorContext_InitializeFromMemory
(
iface
,
pbBuffer
,
cbBufferSize
);
}
HRESULT
WINAPI
IWICComponentFactory_CreateMetadataWriterFromReader_Proxy_W
(
IWICComponentFactory
*
iface
,
IWICMetadataReader
*
pIReader
,
const
GUID
*
pguidVendor
,
IWICMetadataWriter
**
ppIWriter
)
{
return
IWICComponentFactory_CreateMetadataWriterFromReader
(
iface
,
pIReader
,
pguidVendor
,
ppIWriter
);
}
HRESULT
WINAPI
IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy_W
(
IWICComponentFactory
*
iface
,
IWICMetadataBlockWriter
*
pIBlockWriter
,
IWICMetadataQueryWriter
**
ppIQueryWriter
)
{
return
IWICComponentFactory_CreateQueryWriterFromBlockWriter
(
iface
,
pIBlockWriter
,
ppIQueryWriter
);
}
HRESULT
WINAPI
IWICComponentInfo_GetCLSID_Proxy_W
(
IWICComponentInfo
*
iface
,
CLSID
*
pclsid
)
{
...
...
This diff is collapsed.
Click to expand it.
dlls/windowscodecs/windowscodecs.spec
+
2
−
2
View file @
6e2da125
...
...
@@ -53,8 +53,8 @@
@ stdcall IWICBitmap_SetPalette_Proxy(ptr ptr) IWICBitmap_SetPalette_Proxy_W
@ stdcall IWICBitmap_SetResolution_Proxy(ptr double double) IWICBitmap_SetResolution_Proxy_W
@ stdcall IWICColorContext_InitializeFromMemory_Proxy(ptr ptr long) IWICColorContext_InitializeFromMemory_Proxy_W
@ st
ub
IWICComponentFactory_CreateMetadataWriterFromReader_Proxy
@ st
ub
IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy
@ st
dcall
IWICComponentFactory_CreateMetadataWriterFromReader_Proxy
(ptr ptr ptr ptr) IWICComponentFactory_CreateMetadataWriterFromReader_Proxy_W
@ st
dcall IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy(ptr ptr ptr)
IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy
_W
@ stdcall IWICComponentInfo_GetAuthor_Proxy(ptr long ptr ptr) IWICComponentInfo_GetAuthor_Proxy_W
@ stdcall IWICComponentInfo_GetCLSID_Proxy(ptr ptr) IWICComponentInfo_GetCLSID_Proxy_W
@ stdcall IWICComponentInfo_GetFriendlyName_Proxy(ptr long ptr ptr) IWICComponentInfo_GetFriendlyName_Proxy_W
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment