mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
fce898063e
The proof of #1842. Property sheet does unchange the page after WM_INITDIALOG. CORE-16280
14 lines
304 B
C
14 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 }
|
|
};
|