Zhiyi Zhang (@zhiyi) commented about dlls/uxtheme/tests/system.c:
+ SetRect(&rect, 0, 0, 1, 1); + + hr = DrawThemeTextEx(NULL, hdc, 0, 0, L"Wine", -1, DT_CENTER, &rect, NULL); + ok(hr == E_HANDLE, "Got unexpected hr %#lx.\n", hr); + + hr = DrawThemeTextEx(htheme, hdc, 0, 0, L"Wine", -1, DT_CENTER, &rect, NULL); + ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr); + + options.dwSize = sizeof(options); + options.dwFlags = DTT_FONTPROP; + options.iFontPropId = TMT_BODYFONT; + hr = DrawThemeTextEx(htheme, hdc, 0, 0, L"Wine", -1, DT_CENTER, &rect, &options); + ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr); + + options.dwFlags = DTT_TEXTCOLOR; + options.crText = RGB(100,100,100); Add a space after the comma.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9287#note_121342