mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
15 lines
234 B
C
15 lines
234 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 },
|
|
#ifdef _M_IX86
|
|
{ "rsym", func_rsym },
|
|
#endif
|
|
{ 0, 0 }
|
|
};
|