set most of trunk svn property eol-style:native
[reactos.git] / reactos / regtests / winetests / msi / testlist.c
1 #define WIN32_LEAN_AND_MEAN
2 #include <windows.h>
3
4 #define STANDALONE
5 #include "wine/test.h"
6
7 extern void func_db(void);
8 extern void func_format(void);
9 extern void func_install(void);
10 extern void func_msi(void);
11 extern void func_package(void);
12 extern void func_record(void);
13 extern void func_suminfo(void);
14
15 const struct test winetest_testlist[] =
16 {
17 { "db", func_db },
18 { "format", func_format },
19 { "install", func_install },
20 { "msi", func_msi },
21 { "package", func_package },
22 { "record", func_record },
23 { "suminfo", func_suminfo },
24 { 0, 0 }
25 };