projects
/
reactos.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[SXS]
[reactos.git]
/
rostests
/
winetests
/
sxs
/
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_cache
(
void
);
8
extern
void
func_name
(
void
);
9
10
const struct
test winetest_testlist
[] =
11
{
12
{
"cache"
,
func_cache
},
13
{
"name"
,
func_name
},
14
{
0
,
0
}
15
};