mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 04:37:32 +00:00
17 lines
339 B
C
17 lines
339 B
C
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_ms_seh(void);
|
|
extern void func_pseh(void);
|
|
extern void func_pseh_cpp(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
#if !(defined(__GNUC__) && defined(_M_AMD64))
|
|
{ "ms-seh", func_ms_seh },
|
|
#endif
|
|
{ "pseh", func_pseh },
|
|
{ "pseh_cpp", func_pseh_cpp },
|
|
{ 0, 0 }
|
|
};
|