Assorted spelling fixes.
[wine.git] / dlls / windowscodecs / wincodecs_private.h
blobfbbc34fa86d805851f58909c92466e716e7b9eb7
1 /*
2 * Copyright 2009 Vincent Povirk for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef WINCODECS_PRIVATE_H
20 #define WINCODECS_PRIVATE_H
22 DEFINE_GUID(CLSID_WineTgaDecoder, 0xb11fc79a,0x67cc,0x43e6,0xa9,0xce,0xe3,0xd5,0x49,0x45,0xd3,0x04);
24 DEFINE_GUID(CLSID_WICIcnsEncoder, 0x312fb6f1,0xb767,0x409d,0x8a,0x6d,0x0f,0xc1,0x54,0xd4,0xf0,0x5c);
26 DEFINE_GUID(GUID_WineContainerFormatTga, 0x0c44fda1,0xa5c5,0x4298,0x96,0x85,0x47,0x3f,0xc1,0x7c,0xd3,0x22);
28 DEFINE_GUID(GUID_VendorWine, 0xddf46da1,0x7dc1,0x404e,0x98,0xf2,0xef,0xa4,0x8d,0xfc,0x95,0x0a);
30 DEFINE_GUID(IID_IMILBitmapSource,0x7543696a,0xbc8d,0x46b0,0x5f,0x81,0x8d,0x95,0x72,0x89,0x72,0xbe);
31 #define INTERFACE IMILBitmapSource
32 DECLARE_INTERFACE_(IMILBitmapSource,IUnknown)
34 /*** IUnknown methods ***/
35 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID,void **) PURE;
36 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
37 STDMETHOD_(ULONG,Release)(THIS) PURE;
38 /*** IMILBitmapSource methods ***/
39 STDMETHOD_(HRESULT,GetSize)(THIS_ UINT *,UINT *);
40 STDMETHOD_(HRESULT,GetPixelFormat)(THIS_ int *);
41 STDMETHOD_(HRESULT,GetResolution)(THIS_ double *,double *);
42 STDMETHOD_(HRESULT,CopyPalette)(THIS_ IWICPalette *);
43 STDMETHOD_(HRESULT,CopyPixels)(THIS_ const WICRect *,UINT,UINT,BYTE *);
44 STDMETHOD_(HRESULT,UnknownMethod1)(THIS_ void **);
46 #undef INTERFACE
48 #define INTERFACE IMILUnknown1
49 DECLARE_INTERFACE_(IMILUnknown1,IUnknown)
51 /*** IUnknown methods ***/
52 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID,void **) PURE;
53 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
54 STDMETHOD_(ULONG,Release)(THIS) PURE;
56 #undef INTERFACE
58 #define INTERFACE IMILUnknown2
59 DECLARE_INTERFACE_(IMILUnknown2,IUnknown)
61 /*** IUnknown methods ***/
62 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID,void **) PURE;
63 STDMETHOD_(ULONG,AddRef)(THIS) PURE;
64 STDMETHOD_(ULONG,Release)(THIS) PURE;
65 /*** unknown methods ***/
66 STDMETHOD_(HRESULT,UnknownMethod1)(THIS_ void *, void *) PURE;
68 #undef INTERFACE
70 extern HRESULT FormatConverter_CreateInstance(REFIID riid, void** ppv) DECLSPEC_HIDDEN;
71 extern HRESULT ComponentFactory_CreateInstance(REFIID riid, void** ppv) DECLSPEC_HIDDEN;
72 extern HRESULT BmpDecoder_CreateInstance(REFIID riid, void** ppv) DECLSPEC_HIDDEN;
73 extern HRESULT PngDecoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
74 extern HRESULT PngEncoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
75 extern HRESULT BmpEncoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
76 extern HRESULT DibDecoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
77 extern HRESULT GifDecoder_CreateInstance(REFIID riid, void** ppv) DECLSPEC_HIDDEN;
78 extern HRESULT IcoDecoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
79 extern HRESULT JpegDecoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
80 extern HRESULT JpegEncoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
81 extern HRESULT TiffDecoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
82 extern HRESULT TiffEncoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
83 extern HRESULT IcnsEncoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
84 extern HRESULT TgaDecoder_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
86 extern HRESULT BitmapImpl_Create(UINT uiWidth, UINT uiHeight,
87 UINT stride, UINT datasize, BYTE *bits,
88 REFWICPixelFormatGUID pixelFormat, WICBitmapCreateCacheOption option,
89 IWICBitmap **ppIBitmap) DECLSPEC_HIDDEN;
90 extern HRESULT BitmapScaler_Create(IWICBitmapScaler **scaler) DECLSPEC_HIDDEN;
91 extern HRESULT FlipRotator_Create(IWICBitmapFlipRotator **fliprotator) DECLSPEC_HIDDEN;
92 extern HRESULT PaletteImpl_Create(IWICPalette **palette) DECLSPEC_HIDDEN;
93 extern HRESULT StreamImpl_Create(IWICStream **stream) DECLSPEC_HIDDEN;
94 extern HRESULT ColorContext_Create(IWICColorContext **context) DECLSPEC_HIDDEN;
95 extern HRESULT ColorTransform_Create(IWICColorTransform **transform) DECLSPEC_HIDDEN;
96 extern HRESULT BitmapClipper_Create(IWICBitmapClipper **clipper) DECLSPEC_HIDDEN;
98 extern HRESULT copy_pixels(UINT bpp, const BYTE *srcbuffer,
99 UINT srcwidth, UINT srcheight, INT srcstride,
100 const WICRect *rc, UINT dststride, UINT dstbuffersize, BYTE *dstbuffer) DECLSPEC_HIDDEN;
102 extern HRESULT configure_write_source(IWICBitmapFrameEncode *iface,
103 IWICBitmapSource *source, const WICRect *prc,
104 const WICPixelFormatGUID *format,
105 INT width, INT height, double xres, double yres) DECLSPEC_HIDDEN;
107 extern HRESULT write_source(IWICBitmapFrameEncode *iface,
108 IWICBitmapSource *source, const WICRect *prc,
109 const WICPixelFormatGUID *format, UINT bpp,
110 INT width, INT height) DECLSPEC_HIDDEN;
112 extern void reverse_bgr8(UINT bytesperpixel, LPBYTE bits, UINT width, UINT height, INT stride) DECLSPEC_HIDDEN;
114 extern HRESULT get_pixelformat_bpp(const GUID *pixelformat, UINT *bpp) DECLSPEC_HIDDEN;
116 extern HRESULT CreatePropertyBag2(PROPBAG2 *options, UINT count,
117 IPropertyBag2 **property) DECLSPEC_HIDDEN;
119 extern HRESULT CreateComponentInfo(REFCLSID clsid, IWICComponentInfo **ppIInfo) DECLSPEC_HIDDEN;
120 extern HRESULT CreateComponentEnumerator(DWORD componentTypes, DWORD options, IEnumUnknown **ppIEnumUnknown) DECLSPEC_HIDDEN;
122 typedef struct BmpDecoder BmpDecoder;
124 extern HRESULT IcoDibDecoder_CreateInstance(BmpDecoder **ppDecoder) DECLSPEC_HIDDEN;
125 extern void BmpDecoder_GetWICDecoder(BmpDecoder *This, IWICBitmapDecoder **ppDecoder) DECLSPEC_HIDDEN;
126 extern void BmpDecoder_FindIconMask(BmpDecoder *This, ULONG *mask_offset, int *topdown) DECLSPEC_HIDDEN;
128 typedef struct _MetadataItem
130 PROPVARIANT schema;
131 PROPVARIANT id;
132 PROPVARIANT value;
133 } MetadataItem;
135 typedef struct _MetadataHandlerVtbl
137 int is_writer;
138 const CLSID *clsid;
139 HRESULT (*fnLoad)(IStream *stream, const GUID *preferred_vendor,
140 DWORD persist_options, MetadataItem **items, DWORD *item_count);
141 HRESULT (*fnSave)(IStream *stream, DWORD persist_options,
142 const MetadataItem *items, DWORD item_count);
143 HRESULT (*fnGetSizeMax)(const MetadataItem *items, DWORD item_count,
144 ULARGE_INTEGER *size);
145 } MetadataHandlerVtbl;
147 extern HRESULT MetadataReader_Create(const MetadataHandlerVtbl *vtable, REFIID iid, void** ppv) DECLSPEC_HIDDEN;
149 extern HRESULT UnknownMetadataReader_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
150 extern HRESULT IfdMetadataReader_CreateInstance(REFIID iid, void **ppv) DECLSPEC_HIDDEN;
151 extern HRESULT PngTextReader_CreateInstance(REFIID iid, void** ppv) DECLSPEC_HIDDEN;
152 extern HRESULT LSDReader_CreateInstance(REFIID iid, void **ppv) DECLSPEC_HIDDEN;
153 extern HRESULT IMDReader_CreateInstance(REFIID iid, void **ppv) DECLSPEC_HIDDEN;
154 extern HRESULT GCEReader_CreateInstance(REFIID iid, void **ppv) DECLSPEC_HIDDEN;
155 extern HRESULT APEReader_CreateInstance(REFIID iid, void **ppv) DECLSPEC_HIDDEN;
156 extern HRESULT GifCommentReader_CreateInstance(REFIID iid, void **ppv) DECLSPEC_HIDDEN;
158 extern HRESULT stream_initialize_from_filehandle(IWICStream *iface, HANDLE hfile) DECLSPEC_HIDDEN;
160 #endif /* WINCODECS_PRIVATE_H */