mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
13 lines
212 B
C
13 lines
212 B
C
|
|
#define STANDALONE
|
|
#include <wine/test.h>
|
|
|
|
extern void func_pdb(void);
|
|
extern void func_rsym(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "pdb", func_pdb },
|
|
{ "rsym", func_rsym },
|
|
{ 0, 0 }
|
|
};
|