windowscodecs: Implement PNG tEXt metadata reader.
[wine] / dlls / windowscodecs / windowscodecs_wincodec.idl
1 /*
2  * Copyright 2010 Damjan Jovanovic
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include "wincodec.idl"
20
21 [
22     threading(both),
23     uuid(00000301-a8f2-4877-ba0a-fd2b6645fb94)  /* IWICFormatConverter */
24 ]
25 coclass PSFactoryBuffer { interface IFactoryBuffer; }
26
27 [
28     helpstring("WIC Imaging Factory"),
29     threading(both),
30     uuid(cacaf262-9370-4615-a13b-9f5539da4c0a)
31 ]
32 coclass WICImagingFactory { interface IWICImagingFactory; }
33
34 [
35     helpstring("WIC BMP Decoder"),
36     threading(both),
37     uuid(6b462062-7cbf-400d-9fdb-813dd10f2778)
38 ]
39 coclass WICBmpDecoder { interface IWICBitmapDecoder; }
40
41 [
42     helpstring("WIC PNG Decoder"),
43     threading(both),
44     uuid(389ea17b-5078-4cde-b6ef-25c15175c751)
45 ]
46 coclass WICPngDecoder { interface IWICBitmapDecoder; }
47
48 [
49     helpstring("WIC PNG Encoder"),
50     threading(both),
51     uuid(27949969-876a-41d7-9447-568f6a35a4dc)
52 ]
53 coclass WICPngEncoder { interface IWICBitmapEncoder; }
54
55 [
56     helpstring("WIC BMP Encoder"),
57     threading(apartment),
58     uuid(69be8bb4-d66d-47c8-865a-ed1589433782)
59 ]
60 coclass WICBmpEncoder { interface IWICBitmapEncoder; }
61
62 [
63     helpstring("WIC GIF Decoder"),
64     threading(both),
65     uuid(381dda3c-9ce9-4834-a23e-1f98f8fc52be)
66 ]
67 coclass WICGifDecoder { interface IWICBitmapDecoder; }
68
69 [
70     helpstring("WIC ICO Decoder"),
71     threading(both),
72     uuid(c61bfcdf-2e0f-4aad-a8d7-e06bafebcdfe)
73 ]
74 coclass WICIcoDecoder { interface IWICBitmapDecoder; }
75
76 [
77     helpstring("WIC JPEG Decoder"),
78     threading(both),
79     uuid(9456a480-e88b-43ea-9e73-0b2d9b71b1ca)
80 ]
81 coclass WICJpegDecoder { interface IWICBitmapDecoder; }
82
83 [
84     helpstring("WIC JPEG Encoder"),
85     threading(both),
86     uuid(1a34f5c1-4a5a-46dc-b644-1f4567e7a676)
87 ]
88 coclass WICJpegEncoder { interface IWICBitmapEncoder; }
89
90 [
91     helpstring("WIC TIFF Decoder"),
92     threading(both),
93     uuid(b54e85d9-fe23-499f-8b88-6acea713752b)
94 ]
95 coclass WICTiffDecoder { interface IWICBitmapDecoder; }
96
97 [
98     helpstring("WIC TIFF Encoder"),
99     threading(both),
100     uuid(0131be10-2001-4c5f-a9b0-cc88fab64ce8)
101 ]
102 coclass WICTiffEncoder { interface IWICBitmapEncoder; }
103
104 [
105     helpstring("WIC ICNS Encoder"),
106     threading(both),
107     uuid(312fb6f1-b767-409d-8a6d-0fc154d4f05c)
108 ]
109 coclass WICIcnsEncoder { interface IWICBitmapEncoder; }
110
111 [
112     helpstring("WIC Default Format Converter"),
113     threading(both),
114     uuid(1a3f11dc-b514-4b17-8c5f-2154513852f1)
115 ]
116 coclass WICDefaultFormatConverter { interface IWICFormatConverter; }
117
118 [
119     helpstring("WIC TGA Decoder"),
120     threading(both),
121     uuid(b11fc79a-67cc-43e6-a9ce-e3d54945d304)
122 ]
123 coclass WineTgaDecoder { interface IWICBitmapDecoder; }
124
125 [
126     helpstring("WIC Unknown Metadata Reader"),
127     threading(both),
128     uuid(699745c2-5066-4b82-a8e3-d40478dbec8c)
129 ]
130 coclass WICUnknownMetadataReader { interface IWICMetadataReader; }
131
132 [
133     helpstring("WIC Ifd Metadata Reader"),
134     threading(both),
135     uuid(8f914656-9d0a-4eb2-9019-0bf96d8a9ee6)
136 ]
137 coclass WICIfdMetadataReader { interface IWICIfdMetadataReader; }
138
139 [
140     helpstring("WIC Png tEXt Metadata Reader"),
141     threading(both),
142     uuid(4b59afcc-b8c3-408a-b670-89e5fab6fda7)
143 ]
144 coclass WICPngTextMetadataReader { interface IWICMetadataReader; }