source: trunk/src/ntdll/tests/main_test.c

Last change on this file was 21916, checked in by dmik, 14 years ago

Merge branch gcc-kmk to trunk.

File size: 574 bytes
Line 
1/* Automatically generated file; DO NOT EDIT!! */
2
3#include <stdio.h>
4#include <stdlib.h>
5#include <string.h>
6#include "winbase.h"
7
8extern void func_generated(void);
9extern void func_large_int(void);
10extern void func_rtlstr(void);
11extern void func_string(void);
12
13struct test
14{
15 const char *name;
16 void (*func)(void);
17};
18
19static const struct test winetest_testlist[] =
20{
21 { "generated", func_generated },
22 { "large_int", func_large_int },
23 { "rtlstr", func_rtlstr },
24 { "string", func_string },
25 { 0, 0 }
26};
27
28#define WINETEST_WANT_MAIN
29#include "test.h"
Note: See TracBrowser for help on using the repository browser.