Files
Timo Kreuzer dd27d0e194 [APITESTS] Make sure test functions are name correctly
With automatic test list creation, the function name (from START_TEST(name)) will also be the test name and some of those conflict with wine tests.
2026-05-15 16:50:48 +00:00

19 lines
467 B
C

#define STANDALONE
#include <apitest.h>
extern void func_buttonv6(void);
extern void func_ImageListApi(void);
extern void func_propsheetv6(void);
extern void func_toolbarv6(void);
extern void func_tooltipv6(void);
const struct test winetest_testlist[] =
{
{ "buttonv6", func_buttonv6 },
{ "ImageListApi", func_ImageListApi },
{ "propsheetv6", func_propsheetv6 },
{ "toolbarv6", func_toolbarv6 },
{ "tooltipv6", func_tooltipv6 },
{ 0, 0 }
};