Commit a2fa0e76 authored by Ziqing Hui's avatar Ziqing Hui Committed by Alexandre Julliard

windowscodecs: Fix MIME types of DDS decoder.

parent f6961979
......@@ -1298,7 +1298,7 @@ static struct regsvr_decoder const decoder_list[] = {
"1.0.0.0",
&GUID_VendorMicrosoft,
&GUID_ContainerFormatDds,
"image/vnd-ms.dds",
"image/vnd.ms-dds",
".dds",
dds_formats,
dds_patterns
......
......@@ -193,7 +193,6 @@ static void test_decoder_info(void)
hr = IWICBitmapDecoderInfo_GetMimeTypes(decoder_info, len, value, &len);
ok(hr == S_OK, "GetMimeType failed, hr=%x\n", hr);
todo_wine_if(test->todo) {
todo_wine_if(i == 6)
ok(lstrcmpW(value, mimetypeW) == 0, "GetMimeType returned wrong value %s\n", wine_dbgstr_w(value));
ok(len == lstrlenW(mimetypeW) + 1, "GetMimeType returned wrong len %i\n", len);
}
......@@ -205,7 +204,6 @@ static void test_decoder_info(void)
hr = IWICBitmapDecoderInfo_GetMimeTypes(decoder_info, 256, value, &len);
ok(hr == S_OK, "GetMimeType failed, hr=%x\n", hr);
todo_wine_if(test->todo) {
todo_wine_if(i == 6)
ok(lstrcmpW(value, mimetypeW) == 0, "GetMimeType returned wrong value %s\n", wine_dbgstr_w(value));
ok(len == lstrlenW(mimetypeW) + 1, "GetMimeType returned wrong len %i\n", len);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment