From 58387fca692f2940f9150ab29d0fffab20c465d9 Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Mon, 25 Jun 2012 12:54:21 +0900 Subject: [PATCH] windowscodecs: Implement MetadataReaderInfo_GetVendorGUID. --- dlls/windowscodecs/info.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dlls/windowscodecs/info.c b/dlls/windowscodecs/info.c index 1b650d6c051..980dfc40bc7 100644 --- a/dlls/windowscodecs/info.c +++ b/dlls/windowscodecs/info.c @@ -1485,8 +1485,11 @@ static HRESULT WINAPI MetadataReaderInfo_GetAuthor(IWICMetadataReaderInfo *iface static HRESULT WINAPI MetadataReaderInfo_GetVendorGUID(IWICMetadataReaderInfo *iface, GUID *vendor) { - FIXME("(%p,%p): stub\n", iface, vendor); - return E_NOTIMPL; + MetadataReaderInfo *This = impl_from_IWICMetadataReaderInfo(iface); + + TRACE("(%p,%p)\n", iface, vendor); + + return ComponentInfo_GetGUIDValue(This->classkey, vendor_valuename, vendor); } static HRESULT WINAPI MetadataReaderInfo_GetVersion(IWICMetadataReaderInfo *iface, -- 2.11.4.GIT