windowscodecs: Make the QueryInterface() functions static.

This commit is contained in:
Francois Gouget 2009-06-30 10:22:52 +02:00 committed by Alexandre Julliard
parent 27072f296f
commit 97df1e12e6
2 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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;