ReactOS 0.4.15-dev-7788-g1ad9096
metadataquery.c
Go to the documentation of this file.
1/*
2 * Copyright 2016 Andrew Eikum for CodeWeavers
3 * Copyright 2017 Dmitry Timoshkov
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19
20#include "config.h"
21
22#include <stdarg.h>
23
24#define COBJMACROS
25#define NONAMELESSUNION
26
27#include "windef.h"
28#include "winbase.h"
29#include "objbase.h"
30#include "propvarutil.h"
31
32#include "wincodecs_private.h"
33
34#include "wine/debug.h"
35
37
38static const WCHAR *map_shortname_to_schema(const GUID *format, const WCHAR *name);
39
40typedef struct {
46
48{
49 return CONTAINING_RECORD(iface, QueryReader, IWICMetadataQueryReader_iface);
50}
51
53 void **ppvObject)
54{
56
57 TRACE("(%p,%s,%p)\n", This, debugstr_guid(riid), ppvObject);
58
60 IsEqualGUID(riid, &IID_IWICMetadataQueryReader))
61 *ppvObject = &This->IWICMetadataQueryReader_iface;
62 else
63 *ppvObject = NULL;
64
65 if (*ppvObject)
66 {
67 IUnknown_AddRef((IUnknown*)*ppvObject);
68 return S_OK;
69 }
70
71 return E_NOINTERFACE;
72}
73
75{
78 TRACE("(%p) refcount=%u\n", This, ref);
79 return ref;
80}
81
83{
86 TRACE("(%p) refcount=%u\n", This, ref);
87 if (!ref)
88 {
89 IWICMetadataBlockReader_Release(This->block);
90 HeapFree(GetProcessHeap(), 0, This->root);
92 }
93 return ref;
94}
95
97{
99
100 TRACE("(%p,%p)\n", This, format);
101
102 return IWICMetadataBlockReader_GetContainerFormat(This->block, format);
103}
104
106{
107 static const WCHAR rootW[] = { '/',0 };
109 const WCHAR *root;
110 UINT actual_len;
111
112 TRACE("(%p,%u,%p,%p)\n", This, len, location, ret_len);
113
114 if (!ret_len) return E_INVALIDARG;
115
116 root = This->root ? This->root : rootW;
117 actual_len = lstrlenW(root) + 1;
118
119 if (location)
120 {
121 if (len < actual_len)
123
124 memcpy(location, root, actual_len * sizeof(WCHAR));
125 }
126
127 *ret_len = actual_len;
128
129 return S_OK;
130}
131
133{
134 const WCHAR *str;
135 int len;
136};
137
138static const struct
139{
140 int len;
143} str2vt[] =
144{
145 { 4, {'c','h','a','r'}, VT_I1 },
146 { 5, {'u','c','h','a','r'}, VT_UI1 },
147 { 5, {'s','h','o','r','t'}, VT_I2 },
148 { 6, {'u','s','h','o','r','t'}, VT_UI2 },
149 { 4, {'l','o','n','g'}, VT_I4 },
150 { 5, {'u','l','o','n','g'}, VT_UI4 },
151 { 3, {'i','n','t'}, VT_I4 },
152 { 4, {'u','i','n','t'}, VT_UI4 },
153 { 8, {'l','o','n','g','l','o','n','g'}, VT_I8 },
154 { 9, {'u','l','o','n','g','l','o','n','g'}, VT_UI8 },
155 { 5, {'f','l','o','a','t'}, VT_R4 },
156 { 6, {'d','o','u','b','l','e'}, VT_R8 },
157 { 3, {'s','t','r'}, VT_LPSTR },
158 { 4, {'w','s','t','r'}, VT_LPWSTR },
159 { 4, {'g','u','i','d'}, VT_CLSID },
160 { 4, {'b','o','o','l'}, VT_BOOL }
162
164{
165 UINT i;
166
167 for (i = 0; i < ARRAY_SIZE(str2vt); i++)
168 {
169 if (str2vt[i].len == str->len)
170 {
172 str->str, str->len, str2vt[i].str, str2vt[i].len) == CSTR_EQUAL)
173 return str2vt[i].vt;
174 }
175 }
176
177 WARN("type %s is not recognized\n", wine_dbgstr_wn(str->str, str->len));
178
179 return VT_ILLEGAL;
180}
181
182static HRESULT get_token(struct string_t *elem, PROPVARIANT *id, PROPVARIANT *schema, int *idx)
183{
184 const WCHAR *start, *end, *p;
185 WCHAR *bstr;
186 struct string_t next_elem;
187 HRESULT hr;
188
189 TRACE("%s, len %d\n", wine_dbgstr_wn(elem->str, elem->len), elem->len);
190
191 PropVariantInit(id);
192 PropVariantInit(schema);
193
194 if (!elem->len) return S_OK;
195
196 start = elem->str;
197
198 if (*start == '[')
199 {
200 WCHAR *idx_end;
201
202 if (start[1] < '0' || start[1] > '9') return DISP_E_TYPEMISMATCH;
203
204 *idx = strtolW(start + 1, &idx_end, 10);
205 if (idx_end > elem->str + elem->len) return WINCODEC_ERR_INVALIDQUERYREQUEST;
206 if (*idx_end != ']') return WINCODEC_ERR_INVALIDQUERYREQUEST;
207 if (*idx < 0) return WINCODEC_ERR_INVALIDQUERYREQUEST;
208 end = idx_end + 1;
209
210 next_elem.str = end;
211 next_elem.len = elem->len - (end - start);
212 hr = get_token(&next_elem, id, schema, idx);
213 if (hr != S_OK)
214 {
215 TRACE("get_token error %#x\n", hr);
216 return hr;
217 }
218 elem->len = (end - start) + next_elem.len;
219
220 TRACE("indexed %s [%d]\n", wine_dbgstr_wn(elem->str, elem->len), *idx);
221 return S_OK;
222 }
223 else if (*start == '{')
224 {
225 VARTYPE vt;
226 PROPVARIANT next_token;
227
228 end = memchrW(start + 1, '=', elem->len - 1);
230 if (end > elem->str + elem->len) return WINCODEC_ERR_INVALIDQUERYREQUEST;
231
232 next_elem.str = start + 1;
233 next_elem.len = end - start - 1;
234 vt = map_type(&next_elem);
235 TRACE("type %s => %d\n", wine_dbgstr_wn(next_elem.str, next_elem.len), vt);
237
238 next_token.vt = VT_BSTR;
239 next_token.u.bstrVal = SysAllocStringLen(NULL, elem->len - (end - start) + 1);
240 if (!next_token.u.bstrVal) return E_OUTOFMEMORY;
241
242 bstr = next_token.u.bstrVal;
243
244 end++;
245 while (*end && *end != '}' && end - start < elem->len)
246 {
247 if (*end == '\\') end++;
248 *bstr++ = *end++;
249 }
250 if (*end != '}')
251 {
254 }
255 *bstr = 0;
256 TRACE("schema/id %s\n", wine_dbgstr_w(next_token.u.bstrVal));
257
258 if (vt == VT_CLSID)
259 {
260 id->vt = VT_CLSID;
261 id->u.puuid = CoTaskMemAlloc(sizeof(GUID));
262 if (!id->u.puuid)
263 {
265 return E_OUTOFMEMORY;
266 }
267
268 hr = UuidFromStringW(next_token.u.bstrVal, id->u.puuid);
269 }
270 else
273 if (hr != S_OK)
274 {
277 return hr;
278 }
279
280 end++;
281 if (*end == ':')
282 {
283 PROPVARIANT next_id, next_schema;
284 int next_idx = 0;
285
286 next_elem.str = end + 1;
287 next_elem.len = elem->len - (end - start + 1);
288 hr = get_token(&next_elem, &next_id, &next_schema, &next_idx);
289 if (hr != S_OK)
290 {
291 TRACE("get_token error %#x\n", hr);
292 return hr;
293 }
294 elem->len = (end - start + 1) + next_elem.len;
295
296 TRACE("id %s [%d]\n", wine_dbgstr_wn(elem->str, elem->len), *idx);
297
298 if (next_schema.vt != VT_EMPTY)
299 {
300 PropVariantClear(&next_id);
301 PropVariantClear(&next_schema);
303 }
304
305 *schema = *id;
306 *id = next_id;
307
308 return S_OK;
309 }
310
311 elem->len = end - start;
312 return S_OK;
313 }
314
315 end = memchrW(start, '/', elem->len);
316 if (!end) end = start + elem->len;
317
318 p = memchrW(start, ':', end - start);
319 if (p)
320 {
321 next_elem.str = p + 1;
322 next_elem.len = end - p - 1;
323
324 elem->len = p - start;
325 }
326 else
327 elem->len = end - start;
328
329 id->vt = VT_BSTR;
330 id->u.bstrVal = SysAllocStringLen(NULL, elem->len + 1);
331 if (!id->u.bstrVal) return E_OUTOFMEMORY;
332
333 bstr = id->u.bstrVal;
334 p = elem->str;
335 while (p - elem->str < elem->len)
336 {
337 if (*p == '\\') p++;
338 *bstr++ = *p++;
339 }
340 *bstr = 0;
341 TRACE("%s [%d]\n", wine_dbgstr_variant((VARIANT *)id), *idx);
342
343 if (*p == ':')
344 {
345 PROPVARIANT next_id, next_schema;
346 int next_idx = 0;
347
348 hr = get_token(&next_elem, &next_id, &next_schema, &next_idx);
349 if (hr != S_OK)
350 {
351 TRACE("get_token error %#x\n", hr);
354 return hr;
355 }
356 elem->len += next_elem.len + 1;
357
358 TRACE("id %s [%d]\n", wine_dbgstr_wn(elem->str, elem->len), *idx);
359
360 if (next_schema.vt != VT_EMPTY)
361 {
362 PropVariantClear(&next_id);
363 PropVariantClear(&next_schema);
367 }
368
369 *schema = *id;
370 *id = next_id;
371 }
372
373 return S_OK;
374}
375
378{
379 HRESULT hr;
380 GUID format;
381 IWICMetadataReader *new_reader;
382 UINT count, i, matched_index;
383
384 *reader = NULL;
385
386 hr = IWICMetadataBlockReader_GetCount(block_reader, &count);
387 if (hr != S_OK) return hr;
388
389 matched_index = 0;
390
391 for (i = 0; i < count; i++)
392 {
393 hr = IWICMetadataBlockReader_GetReaderByIndex(block_reader, i, &new_reader);
394 if (hr != S_OK) return hr;
395
396 hr = IWICMetadataReader_GetMetadataFormat(new_reader, &format);
397 if (hr == S_OK)
398 {
399 if (IsEqualGUID(&format, guid))
400 {
401 if (matched_index == index)
402 {
403 *reader = new_reader;
404 return S_OK;
405 }
406
407 matched_index++;
408 }
409 }
410
411 IWICMetadataReader_Release(new_reader);
412 if (hr != S_OK) return hr;
413 }
414
416}
417
419 GUID *guid, IWICMetadataReader **new_reader)
420{
421 HRESULT hr;
422 PROPVARIANT schema, id, value;
423
424 *new_reader = NULL;
425
426 PropVariantInit(&schema);
427 PropVariantInit(&id);
428 PropVariantInit(&value);
429
430 if (index)
431 {
432 schema.vt = VT_UI2;
433 schema.u.uiVal = index;
434 }
435
436 id.vt = VT_CLSID;
437 id.u.puuid = guid;
438 hr = IWICMetadataReader_GetValue(reader, &schema, &id, &value);
439 if (hr != S_OK) return hr;
440
441 if (value.vt == VT_UNKNOWN)
442 hr = IUnknown_QueryInterface(value.u.punkVal, &IID_IWICMetadataReader, (void **)new_reader);
443 else
445
447 return hr;
448}
449
451{
453 struct string_t elem;
454 WCHAR *full_query;
455 const WCHAR *p;
456 int index, len;
457 PROPVARIANT tk_id, tk_schema, new_value;
458 GUID guid;
460 HRESULT hr = S_OK;
461
462 TRACE("(%p,%s,%p)\n", This, wine_dbgstr_w(query), value);
463
464 len = lstrlenW(query) + 1;
465 if (This->root) len += lstrlenW(This->root);
466 full_query = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
467 full_query[0] = 0;
468 if (This->root)
469 lstrcpyW(full_query, This->root);
470 lstrcatW(full_query, query);
471
472 PropVariantInit(&tk_id);
473 PropVariantInit(&tk_schema);
474 PropVariantInit(&new_value);
475
476 reader = NULL;
477 p = full_query;
478
479 while (*p)
480 {
481 if (*p != '/')
482 {
483 WARN("query should start with '/'\n");
485 break;
486 }
487
488 p++;
489
490 index = 0;
491 elem.str = p;
492 elem.len = lstrlenW(p);
493 hr = get_token(&elem, &tk_id, &tk_schema, &index);
494 if (hr != S_OK)
495 {
496 WARN("get_token error %#x\n", hr);
497 break;
498 }
499 TRACE("parsed %d characters: %s, index %d\n", elem.len, wine_dbgstr_wn(elem.str, elem.len), index);
500 TRACE("id %s, schema %s\n", wine_dbgstr_variant((VARIANT *)&tk_id), wine_dbgstr_variant((VARIANT *)&tk_schema));
501
502 if (!elem.len) break;
503
504 if (tk_id.vt == VT_CLSID || (tk_id.vt == VT_BSTR && WICMapShortNameToGuid(tk_id.u.bstrVal, &guid) == S_OK))
505 {
506 WCHAR *root;
507
508 if (tk_schema.vt != VT_EMPTY)
509 {
510 FIXME("unsupported schema vt %u\n", tk_schema.vt);
511 PropVariantClear(&tk_schema);
512 }
513
514 if (tk_id.vt == VT_CLSID) guid = *tk_id.u.puuid;
515
516 if (reader)
517 {
518 IWICMetadataReader *new_reader;
519
520 hr = get_next_reader(reader, index, &guid, &new_reader);
521 IWICMetadataReader_Release(reader);
522 reader = new_reader;
523 }
524 else
526
527 if (hr != S_OK) break;
528
529 root = SysAllocStringLen(NULL, elem.str + elem.len - full_query + 2);
530 if (!root)
531 {
533 break;
534 }
535 lstrcpynW(root, full_query, p - full_query + elem.len + 1);
536
537 PropVariantClear(&new_value);
538 new_value.vt = VT_UNKNOWN;
539 hr = MetadataQueryReader_CreateInstance(This->block, root, (IWICMetadataQueryReader **)&new_value.u.punkVal);
541 if (hr != S_OK) break;
542 }
543 else
544 {
545 PROPVARIANT schema, id;
546
547 if (!reader)
548 {
550 break;
551 }
552
553 if (tk_schema.vt == VT_BSTR)
554 {
555 hr = IWICMetadataReader_GetMetadataFormat(reader, &guid);
556 if (hr != S_OK) break;
557
558 schema.vt = VT_LPWSTR;
559 schema.u.pwszVal = (LPWSTR)map_shortname_to_schema(&guid, tk_schema.u.bstrVal);
560 if (!schema.u.pwszVal)
561 schema.u.pwszVal = tk_schema.u.bstrVal;
562 }
563 else
564 schema = tk_schema;
565
566 if (tk_id.vt == VT_BSTR)
567 {
568 id.vt = VT_LPWSTR;
569 id.u.pwszVal = tk_id.u.bstrVal;
570 }
571 else
572 id = tk_id;
573
574 PropVariantClear(&new_value);
575 hr = IWICMetadataReader_GetValue(reader, &schema, &id, &new_value);
576 if (hr != S_OK) break;
577 }
578
579 p += elem.len;
580
581 PropVariantClear(&tk_id);
582 PropVariantClear(&tk_schema);
583 }
584
585 if (reader)
586 IWICMetadataReader_Release(reader);
587
588 PropVariantClear(&tk_id);
589 PropVariantClear(&tk_schema);
590
591 if (hr == S_OK && value)
592 *value = new_value;
593 else
594 PropVariantClear(&new_value);
595
596 HeapFree(GetProcessHeap(), 0, full_query);
597
598 return hr;
599}
600
602 IEnumString **ppIEnumString)
603{
605 FIXME("(%p,%p)\n", This, ppIEnumString);
606 return E_NOTIMPL;
607}
608
609static IWICMetadataQueryReaderVtbl mqr_vtbl = {
617};
618
620{
622
624 if (!obj)
625 return E_OUTOFMEMORY;
626
627 obj->IWICMetadataQueryReader_iface.lpVtbl = &mqr_vtbl;
628 obj->ref = 1;
629
630 IWICMetadataBlockReader_AddRef(mbr);
631 obj->block = mbr;
632
633 obj->root = root ? heap_strdupW(root) : NULL;
634
635 *out = &obj->IWICMetadataQueryReader_iface;
636
637 return S_OK;
638}
639
640static const WCHAR bmpW[] = { 'b','m','p',0 };
641static const WCHAR pngW[] = { 'p','n','g',0 };
642static const WCHAR icoW[] = { 'i','c','o',0 };
643static const WCHAR jpgW[] = { 'j','p','g',0 };
644static const WCHAR tiffW[] = { 't','i','f','f',0 };
645static const WCHAR gifW[] = { 'g','i','f',0 };
646static const WCHAR wmphotoW[] = { 'w','m','p','h','o','t','o',0 };
647static const WCHAR unknownW[] = { 'u','n','k','n','o','w','n',0 };
648static const WCHAR ifdW[] = { 'i','f','d',0 };
649static const WCHAR subW[] = { 's','u','b',0 };
650static const WCHAR exifW[] = { 'e','x','i','f',0 };
651static const WCHAR gpsW[] = { 'g','p','s',0 };
652static const WCHAR interopW[] = { 'i','n','t','e','r','o','p',0 };
653static const WCHAR app0W[] = { 'a','p','p','0',0 };
654static const WCHAR app1W[] = { 'a','p','p','1',0 };
655static const WCHAR app13W[] = { 'a','p','p','1','3',0 };
656static const WCHAR iptcW[] = { 'i','p','t','c',0 };
657static const WCHAR irbW[] = { 'i','r','b',0 };
658static const WCHAR _8bimiptcW[] = { '8','b','i','m','i','p','t','c',0 };
659static const WCHAR _8bimResInfoW[] = { '8','b','i','m','R','e','s','I','n','f','o',0 };
660static const WCHAR _8bimiptcdigestW[] = { '8','b','i','m','i','p','t','c','d','i','g','e','s','t',0 };
661static const WCHAR xmpW[] = { 'x','m','p',0 };
662static const WCHAR thumbW[] = { 't','h','u','m','b',0 };
663static const WCHAR tEXtW[] = { 't','E','X','t',0 };
664static const WCHAR xmpstructW[] = { 'x','m','p','s','t','r','u','c','t',0 };
665static const WCHAR xmpbagW[] = { 'x','m','p','b','a','g',0 };
666static const WCHAR xmpseqW[] = { 'x','m','p','s','e','q',0 };
667static const WCHAR xmpaltW[] = { 'x','m','p','a','l','t',0 };
668static const WCHAR logscrdescW[] = { 'l','o','g','s','c','r','d','e','s','c',0 };
669static const WCHAR imgdescW[] = { 'i','m','g','d','e','s','c',0 };
670static const WCHAR grctlextW[] = { 'g','r','c','t','l','e','x','t',0 };
671static const WCHAR appextW[] = { 'a','p','p','e','x','t',0 };
672static const WCHAR chrominanceW[] = { 'c','h','r','o','m','i','n','a','n','c','e',0 };
673static const WCHAR luminanceW[] = { 'l','u','m','i','n','a','n','c','e',0 };
674static const WCHAR comW[] = { 'c','o','m',0 };
675static const WCHAR commentextW[] = { 'c','o','m','m','e','n','t','e','x','t',0 };
676static const WCHAR gAMAW[] = { 'g','A','M','A',0 };
677static const WCHAR bKGDW[] = { 'b','K','G','D',0 };
678static const WCHAR iTXtW[] = { 'i','T','X','t',0 };
679static const WCHAR cHRMW[] = { 'c','H','R','M',0 };
680static const WCHAR hISTW[] = { 'h','I','S','T',0 };
681static const WCHAR iCCPW[] = { 'i','C','C','P',0 };
682static const WCHAR sRGBW[] = { 's','R','G','B',0 };
683static const WCHAR tIMEW[] = { 't','I','M','E',0 };
684
685static const struct
686{
687 const GUID *guid;
688 const WCHAR *name;
689} guid2name[] =
690{
691 { &GUID_ContainerFormatBmp, bmpW },
692 { &GUID_ContainerFormatPng, pngW },
693 { &GUID_ContainerFormatIco, icoW },
694 { &GUID_ContainerFormatJpeg, jpgW },
695 { &GUID_ContainerFormatTiff, tiffW },
696 { &GUID_ContainerFormatGif, gifW },
697 { &GUID_ContainerFormatWmp, wmphotoW },
698 { &GUID_MetadataFormatUnknown, unknownW },
699 { &GUID_MetadataFormatIfd, ifdW },
700 { &GUID_MetadataFormatSubIfd, subW },
701 { &GUID_MetadataFormatExif, exifW },
702 { &GUID_MetadataFormatGps, gpsW },
703 { &GUID_MetadataFormatInterop, interopW },
704 { &GUID_MetadataFormatApp0, app0W },
705 { &GUID_MetadataFormatApp1, app1W },
706 { &GUID_MetadataFormatApp13, app13W },
707 { &GUID_MetadataFormatIPTC, iptcW },
708 { &GUID_MetadataFormatIRB, irbW },
709 { &GUID_MetadataFormat8BIMIPTC, _8bimiptcW },
710 { &GUID_MetadataFormat8BIMResolutionInfo, _8bimResInfoW },
711 { &GUID_MetadataFormat8BIMIPTCDigest, _8bimiptcdigestW },
712 { &GUID_MetadataFormatXMP, xmpW },
713 { &GUID_MetadataFormatThumbnail, thumbW },
714 { &GUID_MetadataFormatChunktEXt, tEXtW },
715 { &GUID_MetadataFormatXMPStruct, xmpstructW },
716 { &GUID_MetadataFormatXMPBag, xmpbagW },
717 { &GUID_MetadataFormatXMPSeq, xmpseqW },
718 { &GUID_MetadataFormatXMPAlt, xmpaltW },
719 { &GUID_MetadataFormatLSD, logscrdescW },
720 { &GUID_MetadataFormatIMD, imgdescW },
721 { &GUID_MetadataFormatGCE, grctlextW },
722 { &GUID_MetadataFormatAPE, appextW },
723 { &GUID_MetadataFormatJpegChrominance, chrominanceW },
724 { &GUID_MetadataFormatJpegLuminance, luminanceW },
725 { &GUID_MetadataFormatJpegComment, comW },
726 { &GUID_MetadataFormatGifComment, commentextW },
727 { &GUID_MetadataFormatChunkgAMA, gAMAW },
728 { &GUID_MetadataFormatChunkbKGD, bKGDW },
729 { &GUID_MetadataFormatChunkiTXt, iTXtW },
730 { &GUID_MetadataFormatChunkcHRM, cHRMW },
731 { &GUID_MetadataFormatChunkhIST, hISTW },
732 { &GUID_MetadataFormatChunkiCCP, iCCPW },
733 { &GUID_MetadataFormatChunksRGB, sRGBW },
734 { &GUID_MetadataFormatChunktIME, tIMEW }
736
738{
739 UINT i;
740
741 TRACE("%s,%u,%p,%p\n", wine_dbgstr_guid(guid), len, name, ret_len);
742
743 if (!guid) return E_INVALIDARG;
744
745 for (i = 0; i < ARRAY_SIZE(guid2name); i++)
746 {
748 {
749 if (name)
750 {
751 if (!len) return E_INVALIDARG;
752
753 len = min(len - 1, lstrlenW(guid2name[i].name));
754 memcpy(name, guid2name[i].name, len * sizeof(WCHAR));
755 name[len] = 0;
756
757 if (len < lstrlenW(guid2name[i].name))
759 }
760 if (ret_len) *ret_len = lstrlenW(guid2name[i].name) + 1;
761 return S_OK;
762 }
763 }
764
766}
767
769{
770 UINT i;
771
772 TRACE("%s,%p\n", debugstr_w(name), guid);
773
774 if (!name || !guid) return E_INVALIDARG;
775
776 for (i = 0; i < ARRAY_SIZE(guid2name); i++)
777 {
778 if (!lstrcmpiW(name, guid2name[i].name))
779 {
780 *guid = *guid2name[i].guid;
781 return S_OK;
782 }
783 }
784
786}
787
788static const WCHAR rdf[] = { 'r','d','f',0 };
789static const WCHAR rdf_scheme[] = { 'h','t','t','p',':','/','/','w','w','w','.','w','3','.','o','r','g','/','1','9','9','9','/','0','2','/','2','2','-','r','d','f','-','s','y','n','t','a','x','-','n','s','#',0 };
790static const WCHAR dc[] = { 'd','c',0 };
791static const WCHAR dc_scheme[] = { 'h','t','t','p',':','/','/','p','u','r','l','.','o','r','g','/','d','c','/','e','l','e','m','e','n','t','s','/','1','.','1','/',0 };
792static const WCHAR xmp[] = { 'x','m','p',0 };
793static const WCHAR xmp_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/',0 };
794static const WCHAR xmpidq[] = { 'x','m','p','i','d','q',0 };
795static const WCHAR xmpidq_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','m','p','/','I','d','e','n','t','i','f','i','e','r','/','q','u','a','l','/','1','.','0','/',0 };
796static const WCHAR xmpRights[] = { 'x','m','p','R','i','g','h','t','s',0 };
797static const WCHAR xmpRights_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','r','i','g','h','t','s','/',0 };
798static const WCHAR xmpMM[] = { 'x','m','p','M','M',0 };
799static const WCHAR xmpMM_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','m','m','/',0 };
800static const WCHAR xmpBJ[] = { 'x','m','p','B','J',0 };
801static const WCHAR xmpBJ_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','b','j','/',0 };
802static const WCHAR xmpTPg[] = { 'x','m','p','T','P','g',0 };
803static const WCHAR xmpTPg_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','t','/','p','g','/',0 };
804static const WCHAR pdf[] = { 'p','d','f',0 };
805static const WCHAR pdf_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','p','d','f','/','1','.','3','/',0 };
806static const WCHAR photoshop[] = { 'p','h','o','t','o','s','h','o','p',0 };
807static const WCHAR photoshop_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','p','h','o','t','o','s','h','o','p','/','1','.','0','/',0 };
808static const WCHAR tiff[] = { 't','i','f','f',0 };
809static const WCHAR tiff_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','t','i','f','f','/','1','.','0','/',0 };
810static const WCHAR exif[] = { 'e','x','i','f',0 };
811static const WCHAR exif_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','e','x','i','f','/','1','.','0','/',0 };
812static const WCHAR stDim[] = { 's','t','D','i','m',0 };
813static const WCHAR stDim_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','s','T','y','p','e','/','D','i','m','e','n','s','i','o','n','s','#',0 };
814static const WCHAR xapGImg[] = { 'x','a','p','G','I','m','g',0 };
815static const WCHAR xapGImg_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','g','/','i','m','g','/',0 };
816static const WCHAR stEvt[] = { 's','t','E','v','t',0 };
817static const WCHAR stEvt_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','s','T','y','p','e','/','R','e','s','o','u','r','c','e','E','v','e','n','t','#',0 };
818static const WCHAR stRef[] = { 's','t','R','e','f',0 };
819static const WCHAR stRef_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','s','T','y','p','e','/','R','e','s','o','u','r','c','e','R','e','f','#',0 };
820static const WCHAR stVer[] = { 's','t','V','e','r',0 };
821static const WCHAR stVer_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','s','T','y','p','e','/','V','e','r','s','i','o','n','#',0 };
822static const WCHAR stJob[] = { 's','t','J','o','b',0 };
823static const WCHAR stJob_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','a','p','/','1','.','0','/','s','T','y','p','e','/','J','o','b','#',0 };
824static const WCHAR aux[] = { 'a','u','x',0 };
825static const WCHAR aux_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','e','x','i','f','/','1','.','0','/','a','u','x','/',0 };
826static const WCHAR crs[] = { 'c','r','s',0 };
827static const WCHAR crs_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','c','a','m','e','r','a','-','r','a','w','-','s','e','t','t','i','n','g','s','/','1','.','0','/',0 };
828static const WCHAR xmpDM[] = { 'x','m','p','D','M',0 };
829static const WCHAR xmpDM_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','a','d','o','b','e','.','c','o','m','/','x','m','p','/','1','.','0','/','D','y','n','a','m','i','c','M','e','d','i','a','/',0 };
830static const WCHAR Iptc4xmpCore[] = { 'I','p','t','c','4','x','m','p','C','o','r','e',0 };
831static const WCHAR Iptc4xmpCore_scheme[] = { 'h','t','t','p',':','/','/','i','p','t','c','.','o','r','g','/','s','t','d','/','I','p','t','c','4','x','m','p','C','o','r','e','/','1','.','0','/','x','m','l','n','s','/',0 };
832static const WCHAR MicrosoftPhoto[] = { 'M','i','c','r','o','s','o','f','t','P','h','o','t','o',0 };
833static const WCHAR MicrosoftPhoto_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','m','i','c','r','o','s','o','f','t','.','c','o','m','/','p','h','o','t','o','/','1','.','0','/',0 };
834static const WCHAR MP[] = { 'M','P',0 };
835static const WCHAR MP_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','m','i','c','r','o','s','o','f','t','.','c','o','m','/','p','h','o','t','o','/','1','.','2','/',0 };
836static const WCHAR MPRI[] = { 'M','P','R','I',0 };
837static const WCHAR MPRI_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','m','i','c','r','o','s','o','f','t','.','c','o','m','/','p','h','o','t','o','/','1','.','2','/','t','/','R','e','g','i','o','n','I','n','f','o','#',0 };
838static const WCHAR MPReg[] = { 'M','P','R','e','g',0 };
839static const WCHAR MPReg_scheme[] = { 'h','t','t','p',':','/','/','n','s','.','m','i','c','r','o','s','o','f','t','.','c','o','m','/','p','h','o','t','o','/','1','.','2','/','t','/','R','e','g','i','o','n','#',0 };
840
841static const struct
842{
843 const WCHAR *name;
844 const WCHAR *schema;
845} name2schema[] =
846{
847 { rdf, rdf_scheme },
848 { dc, dc_scheme },
849 { xmp, xmp_scheme },
852 { xmpMM, xmpMM_scheme },
853 { xmpBJ, xmpBJ_scheme },
855 { pdf, pdf_scheme },
857 { tiff, tiff_scheme },
858 { exif, exif_scheme },
859 { stDim, stDim_scheme },
861 { stEvt, stEvt_scheme },
862 { stRef, stRef_scheme },
863 { stVer, stVer_scheme },
864 { stJob, stJob_scheme },
865 { aux, aux_scheme },
866 { crs, crs_scheme },
867 { xmpDM, xmpDM_scheme },
870 { MP, MP_scheme },
871 { MPRI, MPRI_scheme },
874
875static const WCHAR *map_shortname_to_schema(const GUID *format, const WCHAR *name)
876{
877 UINT i;
878
879 /* It appears that the only metadata formats
880 * that support schemas are xmp and xmpstruct.
881 */
882 if (!IsEqualGUID(format, &GUID_MetadataFormatXMP) &&
883 !IsEqualGUID(format, &GUID_MetadataFormatXMPStruct))
884 return NULL;
885
886 for (i = 0; i < ARRAY_SIZE(name2schema); i++)
887 {
889 return name2schema[i].schema;
890 }
891
892 return NULL;
893}
894
896{
897 UINT i;
898
899 TRACE("%s,%s,%u,%p,%p\n", wine_dbgstr_guid(format), debugstr_w(schema), len, name, ret_len);
900
901 if (!format || !schema || !ret_len)
902 return E_INVALIDARG;
903
904 /* It appears that the only metadata formats
905 * that support schemas are xmp and xmpstruct.
906 */
907 if (!IsEqualGUID(format, &GUID_MetadataFormatXMP) &&
908 !IsEqualGUID(format, &GUID_MetadataFormatXMPStruct))
910
911 for (i = 0; i < ARRAY_SIZE(name2schema); i++)
912 {
914 {
915 if (name)
916 {
917 if (!len) return E_INVALIDARG;
918
919 len = min(len - 1, lstrlenW(name2schema[i].name));
920 memcpy(name, name2schema[i].name, len * sizeof(WCHAR));
921 name[len] = 0;
922
923 if (len < lstrlenW(name2schema[i].name))
925 }
926
928 return S_OK;
929 }
930 }
931
933}
#define InterlockedIncrement
Definition: armddk.h:53
#define InterlockedDecrement
Definition: armddk.h:52
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
#define index(s, c)
Definition: various.h:29
#define ARRAY_SIZE(A)
Definition: main.h:33
const GUID IID_IUnknown
#define FIXME(fmt,...)
Definition: debug.h:111
#define WARN(fmt,...)
Definition: debug.h:112
struct _root root
#define ERROR_INSUFFICIENT_BUFFER
Definition: dderror.h:10
#define E_OUTOFMEMORY
Definition: ddrawi.h:100
#define E_INVALIDARG
Definition: ddrawi.h:101
#define E_NOTIMPL
Definition: ddrawi.h:99
int next_token(char **, FILE *)
#define NULL
Definition: types.h:112
unsigned int idx
Definition: utils.c:41
static WCHAR * heap_strdupW(const WCHAR *str)
Definition: propsheet.c:178
static const WCHAR rootW[]
Definition: chain.c:69
const char * wine_dbgstr_wn(const WCHAR *str, int n)
Definition: compat.c:367
#define GetProcessHeap()
Definition: compat.h:736
#define HeapAlloc
Definition: compat.h:733
unsigned short VARTYPE
Definition: compat.h:2254
#define HeapFree(x, y, z)
Definition: compat.h:735
#define lstrcpyW
Definition: compat.h:749
#define HEAP_ZERO_MEMORY
Definition: compat.h:134
@ VT_UI8
Definition: compat.h:2315
@ VT_BSTR
Definition: compat.h:2303
@ VT_LPSTR
Definition: compat.h:2324
@ VT_R4
Definition: compat.h:2299
@ VT_UNKNOWN
Definition: compat.h:2308
@ VT_UI2
Definition: compat.h:2312
@ VT_CLSID
Definition: compat.h:2337
@ VT_LPWSTR
Definition: compat.h:2325
@ VT_R8
Definition: compat.h:2300
@ VT_I8
Definition: compat.h:2314
@ VT_I1
Definition: compat.h:2310
@ VT_I4
Definition: compat.h:2298
@ VT_ILLEGAL
Definition: compat.h:2344
@ VT_BOOL
Definition: compat.h:2306
@ VT_I2
Definition: compat.h:2297
@ VT_UI4
Definition: compat.h:2313
@ VT_EMPTY
Definition: compat.h:2295
@ VT_UI1
Definition: compat.h:2311
#define lstrcpynW
Definition: compat.h:738
#define lstrlenW
Definition: compat.h:750
HRESULT WINAPI PropVariantClear(PROPVARIANT *pvar)
Definition: ole2.c:2968
HRESULT WINAPI PropVariantChangeType(PROPVARIANT *ppropvarDest, REFPROPVARIANT propvarSrc, PROPVAR_CHANGE_FLAGS flags, VARTYPE vt)
Definition: propvar.c:428
GLuint start
Definition: gl.h:1545
GLuint GLuint end
Definition: gl.h:1545
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546
GLuint index
Definition: glext.h:6031
GLfloat GLfloat p
Definition: glext.h:8902
GLenum GLsizei len
Definition: glext.h:6722
GLuint id
Definition: glext.h:5910
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
WINE_UNICODE_INLINE WCHAR * memchrW(const WCHAR *ptr, WCHAR ch, size_t n)
Definition: unicode.h:295
LPVOID WINAPI CoTaskMemAlloc(SIZE_T size)
Definition: ifs.c:426
REFIID riid
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define debugstr_guid
Definition: kernel32.h:35
#define debugstr_w
Definition: kernel32.h:32
#define wine_dbgstr_w
Definition: kernel32.h:34
INT WINAPI CompareStringW(LCID lcid, DWORD flags, LPCWSTR str1, INT len1, LPCWSTR str2, INT len2)
Definition: lang.c:2671
int WINAPI lstrcmpiW(LPCWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:194
LPWSTR WINAPI lstrcatW(LPWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:274
int WINAPI lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:170
static const WCHAR MicrosoftPhoto[]
static const WCHAR xmpidq[]
static const struct @591 str2vt[]
static const WCHAR xmpRights_scheme[]
static ULONG WINAPI mqr_AddRef(IWICMetadataQueryReader *iface)
Definition: metadataquery.c:74
HRESULT WINAPI WICMapGuidToShortName(REFGUID guid, UINT len, WCHAR *name, UINT *ret_len)
static VARTYPE map_type(struct string_t *str)
static const WCHAR comW[]
static const WCHAR rdf_scheme[]
static HRESULT get_token(struct string_t *elem, PROPVARIANT *id, PROPVARIANT *schema, int *idx)
static const WCHAR aux_scheme[]
static const WCHAR rdf[]
static const WCHAR chrominanceW[]
static const WCHAR xmpDM_scheme[]
static const WCHAR xmp_scheme[]
static const WCHAR MPRI[]
static const WCHAR hISTW[]
static ULONG WINAPI mqr_Release(IWICMetadataQueryReader *iface)
Definition: metadataquery.c:82
static const WCHAR dc[]
static const WCHAR xmpBJ[]
static const WCHAR wmphotoW[]
static const WCHAR dc_scheme[]
static const WCHAR xmpMM[]
static const WCHAR stEvt[]
static const WCHAR MPReg_scheme[]
static QueryReader * impl_from_IWICMetadataQueryReader(IWICMetadataQueryReader *iface)
Definition: metadataquery.c:47
static const WCHAR aux[]
static const WCHAR app1W[]
static const WCHAR tiff[]
static const WCHAR imgdescW[]
static const WCHAR photoshop[]
static const WCHAR pdf_scheme[]
static const WCHAR iptcW[]
static const WCHAR stVer[]
static HRESULT WINAPI mqr_GetLocation(IWICMetadataQueryReader *iface, UINT len, WCHAR *location, UINT *ret_len)
static const WCHAR MicrosoftPhoto_scheme[]
static const WCHAR stRef_scheme[]
WCHAR str[10]
static const WCHAR photoshop_scheme[]
static const WCHAR _8bimiptcdigestW[]
HRESULT WINAPI WICMapSchemaToName(REFGUID format, LPWSTR schema, UINT len, WCHAR *name, UINT *ret_len)
static const WCHAR exif[]
static const WCHAR app0W[]
static const WCHAR xmpTPg_scheme[]
static const WCHAR bKGDW[]
static const WCHAR tiffW[]
static const WCHAR xmpidq_scheme[]
static const WCHAR ifdW[]
static const struct @592 guid2name[]
static const WCHAR MP[]
static const WCHAR icoW[]
static const WCHAR Iptc4xmpCore[]
static const WCHAR gpsW[]
static const WCHAR xmp[]
static const WCHAR iTXtW[]
static const WCHAR luminanceW[]
static const WCHAR commentextW[]
const WCHAR * schema
static const WCHAR xmpMM_scheme[]
static const WCHAR pngW[]
static const WCHAR sRGBW[]
const WCHAR * name
static const WCHAR app13W[]
static const WCHAR xmpstructW[]
static const WCHAR _8bimResInfoW[]
static const WCHAR * map_shortname_to_schema(const GUID *format, const WCHAR *name)
static const WCHAR xmpseqW[]
HRESULT MetadataQueryReader_CreateInstance(IWICMetadataBlockReader *mbr, const WCHAR *root, IWICMetadataQueryReader **out)
const GUID * guid
static const WCHAR crs[]
static const WCHAR iCCPW[]
HRESULT WINAPI WICMapShortNameToGuid(PCWSTR name, GUID *guid)
static HRESULT get_next_reader(IWICMetadataReader *reader, UINT index, GUID *guid, IWICMetadataReader **new_reader)
static const WCHAR cHRMW[]
static const WCHAR xmpDM[]
static HRESULT WINAPI mqr_GetEnumerator(IWICMetadataQueryReader *iface, IEnumString **ppIEnumString)
static const WCHAR appextW[]
static HRESULT find_reader_from_block(IWICMetadataBlockReader *block_reader, UINT index, GUID *guid, IWICMetadataReader **reader)
static const WCHAR tEXtW[]
static const WCHAR stRef[]
static const WCHAR xmpbagW[]
static const WCHAR xmpW[]
static const WCHAR _8bimiptcW[]
static const WCHAR xapGImg_scheme[]
static const WCHAR jpgW[]
static const WCHAR unknownW[]
static const struct @593 name2schema[]
static const WCHAR xmpBJ_scheme[]
static const WCHAR tIMEW[]
static const WCHAR MPRI_scheme[]
static const WCHAR thumbW[]
static const WCHAR crs_scheme[]
static const WCHAR stJob[]
static const WCHAR stJob_scheme[]
static const WCHAR stDim_scheme[]
static const WCHAR exif_scheme[]
static const WCHAR tiff_scheme[]
static const WCHAR grctlextW[]
static const WCHAR interopW[]
static const WCHAR logscrdescW[]
static const WCHAR Iptc4xmpCore_scheme[]
static const WCHAR xmpRights[]
static const WCHAR gifW[]
static HRESULT WINAPI mqr_GetMetadataByName(IWICMetadataQueryReader *iface, LPCWSTR query, PROPVARIANT *value)
static const WCHAR pdf[]
static const WCHAR stVer_scheme[]
static const WCHAR xapGImg[]
static HRESULT WINAPI mqr_QueryInterface(IWICMetadataQueryReader *iface, REFIID riid, void **ppvObject)
Definition: metadataquery.c:52
static const WCHAR stEvt_scheme[]
static const WCHAR stDim[]
static const WCHAR xmpTPg[]
static IWICMetadataQueryReaderVtbl mqr_vtbl
static const WCHAR bmpW[]
static const WCHAR gAMAW[]
static HRESULT WINAPI mqr_GetContainerFormat(IWICMetadataQueryReader *iface, GUID *format)
Definition: metadataquery.c:96
static const WCHAR MP_scheme[]
static const WCHAR subW[]
VARTYPE vt
static const WCHAR irbW[]
static const WCHAR exifW[]
static const WCHAR MPReg[]
static const WCHAR xmpaltW[]
int len
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
static JOBOBJECTINFOCLASS LPVOID DWORD LPDWORD ret_len
Definition: process.c:79
static size_t elem
Definition: string.c:68
#define min(a, b)
Definition: monoChain.cc:55
unsigned int UINT
Definition: ndis.h:50
#define LOCALE_SYSTEM_DEFAULT
void WINAPI DECLSPEC_HOTPATCH SysFreeString(BSTR str)
Definition: oleaut.c:271
BSTR WINAPI SysAllocStringLen(const OLECHAR *str, unsigned int len)
Definition: oleaut.c:339
long LONG
Definition: pedump.c:60
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define REFIID
Definition: guiddef.h:118
#define strtolW(s, e, b)
Definition: unicode.h:33
static FILE * out
Definition: regtests2xml.c:44
RPC_STATUS WINAPI UuidFromStringW(RPC_WSTR s, UUID *uuid)
Definition: rpcrt4_main.c:614
static __inline const char * wine_dbgstr_guid(const GUID *id)
Definition: debug.h:197
HRESULT hr
Definition: shlfolder.c:183
#define TRACE(s)
Definition: solgame.cpp:4
IWICMetadataQueryReader IWICMetadataQueryReader_iface
Definition: metadataquery.c:41
IWICMetadataBlockReader * block
Definition: metadataquery.c:43
WCHAR * root
Definition: metadataquery.c:44
Definition: scsiwmi.h:51
Definition: name.c:39
Definition: reader.h:84
Definition: send.c:48
const WCHAR * str
BSTR bstrVal
Definition: compat.h:2399
VARTYPE vt
Definition: compat.h:2381
Definition: tiffiop.h:115
const uint16_t * PCWSTR
Definition: typedefs.h:57
#define CONTAINING_RECORD(address, type, field)
Definition: typedefs.h:260
uint32_t ULONG
Definition: typedefs.h:59
Definition: pdh_main.c:94
_In_ void _In_ PCCERT_CONTEXT _In_opt_ LPFILETIME _In_ DWORD _In_ DWORD _Outptr_opt_ void ** ppvObject
Definition: wincrypt.h:6082
#define WINAPI
Definition: msvc.h:6
#define WINCODEC_ERR_WRONGSTATE
Definition: winerror.h:3281
#define E_NOINTERFACE
Definition: winerror.h:2364
#define WINCODEC_ERR_UNEXPECTEDMETADATATYPE
Definition: winerror.h:3316
#define WINCODEC_ERR_INVALIDQUERYREQUEST
Definition: winerror.h:3315
#define WINCODEC_ERR_PROPERTYNOTSUPPORTED
Definition: winerror.h:3288
#define HRESULT_FROM_WIN32(x)
Definition: winerror.h:92
#define DISP_E_TYPEMISMATCH
Definition: winerror.h:2514
#define WINCODEC_ERR_INSUFFICIENTBUFFER
Definition: winerror.h:3311
#define WINCODEC_ERR_PROPERTYNOTFOUND
Definition: winerror.h:3287
#define NORM_IGNORECASE
Definition: winnls.h:176
#define CSTR_EQUAL
Definition: winnls.h:456
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185