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
97df1e12
Commit
97df1e12
authored
Jun 30, 2009
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Make the QueryInterface() functions static.
parent
27072f29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
bmpdecode.c
dlls/windowscodecs/bmpdecode.c
+2
-2
imgfactory.c
dlls/windowscodecs/imgfactory.c
+1
-1
No files found.
dlls/windowscodecs/bmpdecode.c
View file @
97df1e12
...
...
@@ -66,7 +66,7 @@ typedef struct {
BITMAPV5HEADER
bih
;
}
BmpFrameDecode
;
HRESULT
WINAPI
BmpFrameDecode_QueryInterface
(
IWICBitmapFrameDecode
*
iface
,
REFIID
iid
,
static
HRESULT
WINAPI
BmpFrameDecode_QueryInterface
(
IWICBitmapFrameDecode
*
iface
,
REFIID
iid
,
void
**
ppv
)
{
BmpFrameDecode
*
This
=
(
BmpFrameDecode
*
)
iface
;
...
...
@@ -274,7 +274,7 @@ static HRESULT BmpDecoder_ReadHeaders(BmpDecoder* This, IStream *stream)
return
S_OK
;
}
HRESULT
WINAPI
BmpDecoder_QueryInterface
(
IWICBitmapDecoder
*
iface
,
REFIID
iid
,
static
HRESULT
WINAPI
BmpDecoder_QueryInterface
(
IWICBitmapDecoder
*
iface
,
REFIID
iid
,
void
**
ppv
)
{
BmpDecoder
*
This
=
(
BmpDecoder
*
)
iface
;
...
...
dlls/windowscodecs/imgfactory.c
View file @
97df1e12
...
...
@@ -39,7 +39,7 @@ typedef struct {
LONG
ref
;
}
ImagingFactory
;
HRESULT
WINAPI
ImagingFactory_QueryInterface
(
IWICImagingFactory
*
iface
,
REFIID
iid
,
static
HRESULT
WINAPI
ImagingFactory_QueryInterface
(
IWICImagingFactory
*
iface
,
REFIID
iid
,
void
**
ppv
)
{
ImagingFactory
*
This
=
(
ImagingFactory
*
)
iface
;
...
...
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