mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
14 lines
212 B
C
14 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 }
|
||
|
};
|