From: Zhiyi Zhang zzhang@codeweavers.com
--- dlls/comctl32/Makefile.in | 1 - dlls/comctl32/comctl32.spec | 2 -- dlls/comctl32/tests/misc.c | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-)
diff --git a/dlls/comctl32/Makefile.in b/dlls/comctl32/Makefile.in index bc17cd94199..a61bdfc1e47 100644 --- a/dlls/comctl32/Makefile.in +++ b/dlls/comctl32/Makefile.in @@ -40,7 +40,6 @@ SOURCES = \ string.c \ syslink.c \ tab.c \ - taskdialog.c \ toolbar.c \ tooltips.c \ trackbar.c \ diff --git a/dlls/comctl32/comctl32.spec b/dlls/comctl32/comctl32.spec index 73f25906205..8091ca489b5 100644 --- a/dlls/comctl32/comctl32.spec +++ b/dlls/comctl32/comctl32.spec @@ -61,8 +61,6 @@ 340 stdcall -ordinal DPA_CreateEx(long long) 341 stdcall -noname SendNotify(long long long ptr) 342 stdcall -noname SendNotifyEx(long long long ptr long) -344 stdcall -ordinal TaskDialog(long long wstr wstr wstr long wstr ptr) -345 stdcall -ordinal TaskDialogIndirect(ptr ptr ptr ptr) 350 stdcall -noname -private StrChrA(str long) kernelbase.StrChrA 351 stdcall -noname -private StrRChrA(str str long) kernelbase.StrRChrA 352 stdcall -noname -private StrCmpNA(str str long) kernelbase.StrCmpNA diff --git a/dlls/comctl32/tests/misc.c b/dlls/comctl32/tests/misc.c index b9eeab1ef59..8a2b2ca9f76 100644 --- a/dlls/comctl32/tests/misc.c +++ b/dlls/comctl32/tests/misc.c @@ -1330,7 +1330,7 @@ static void test_version(BOOL v6) if (v6) ok(!!proc, "Get %s failed.\n", v6_only_exports[i]); else - todo_wine + todo_wine_if(!strstr(v6_only_exports[i], "TaskDialog")) ok(!proc, "Get %s succeeded.\n", v6_only_exports[i]); } }