mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
33c6673cfb
svn path=/trunk/; revision=26014
27 lines
481 B
C
27 lines
481 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"
|
|
|
|
struct test
|
|
{
|
|
const char *name;
|
|
void (*func)(void);
|
|
};
|
|
|
|
extern void func_power(void);
|
|
extern void func_ros_init(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "power", func_power },
|
|
{ "ros_init", func_ros_init },
|
|
{ 0, 0 }
|
|
};
|
|
|
|
#define WINETEST_WANT_MAIN
|
|
#include "wine/test.h"
|