Zebediah Figura (@zfigura) commented about dlls/wmvcore/tests/wmvcore.c:
- hr = IWMStreamConfig_QueryInterface(stream_config, &IID_IWMMediaProps, (void**)&media_props);
- ok(hr == S_OK, "Got hr %#lx.\n", hr);
- mt = (WM_MEDIA_TYPE *)mt_buffer;
- memset(mt_buffer, 0xcc, sizeof(mt_buffer));
- ret_size = sizeof(mt_buffer);
- hr = IWMMediaProps_GetMediaType(media_props, mt, &ret_size);
- ok(hr == S_OK, "Got hr %#lx.\n", hr);
- ok(compare_media_types(mt, expected), "Media types didn't match.\n");
- IWMStreamConfig_Release(stream_config);
- IWMMediaProps_Release(media_props);
+}
+static const VIDEOINFOHEADER vih_wmv1 = {
Style nitpick, opening braces always go on their own line, to match vertically with the closing brace.