reactos/modules/rostests/apitests/comctl32/testlist.c
Katayama Hirofumi MZ fce898063e
[COMCTL32_APITEST] Add propsheetv6 testcase (#1853)
The proof of #1842. Property sheet does unchange the page after WM_INITDIALOG. CORE-16280
2019-08-18 18:53:37 +09:00

15 lines
304 B
C

#define STANDALONE
#include <apitest.h>
extern void func_button(void);
extern void func_propsheet(void);
extern void func_toolbar(void);
const struct test winetest_testlist[] =
{
{ "buttonv6", func_button },
{ "propsheetv6", func_propsheet },
{ "toolbarv6", func_toolbar },
{ 0, 0 }
};