mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 11:53:32 +00:00
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.
19 lines
467 B
C
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 }
|
|
};
|