Files
reactos/reactos/lib/comctl32/tests/testlist.c
T
Steven Edwards af0423f839 Added Wine Common Control Regression tests.
As of 2004-10-7 we pass all of these tests.

svn path=/trunk/; revision=11572
2004-11-07 14:36:23 +00:00

32 lines
615 B
C

/* Automatically generated file; DO NOT EDIT!! */
/* stdarg.h is needed for Winelib */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
extern void func_dpa(void);
extern void func_imagelist(void);
extern void func_subclass(void);
extern void func_tab(void);
struct test
{
const char *name;
void (*func)(void);
};
static const struct test winetest_testlist[] =
{
{ "dpa", func_dpa },
{ "imagelist", func_imagelist },
{ "subclass", func_subclass },
{ "tab", func_tab },
{ 0, 0 }
};
#define WINETEST_WANT_MAIN
#include "wine/test.h"