mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
16 lines
234 B
C
16 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 }
|
|
};
|