1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

compstui/tests: Use nameless unions/structs.

This commit is contained in:
Alexandre Julliard 2023-07-19 12:17:20 +02:00
parent 786dc0808b
commit a0b9b4ee2a

View File

@ -198,7 +198,7 @@ static LONG WINAPI propsheetui_callback(PROPSHEETUI_INFO *info, LPARAM lparam)
memset(&psp, 0, sizeof(psp));
psp.dwSize = sizeof(psp);
U(psp).pszTemplate = L"prop_page1";
psp.pszTemplate = L"prop_page1";
psp.pfnDlgProc = prop_page_proc2;
ret = info->pfnComPropSheet(info->hComPropSheet, CPSFUNC_ADD_PROPSHEETPAGEW, (LPARAM)&psp, 0);
ok(ret, "ret = 0\n");