mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
6fd6e9c306
These tests come with a VS solution, because that is the only way to test against a known good system, as the required runtime functions (like _ftol) are statically linked from the VS runtime library.
20 lines
461 B
C
20 lines
461 B
C
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_floatconv(void);
|
|
extern void func_ms_seh(void);
|
|
extern void func_pseh(void);
|
|
extern void func_pseh_cpp(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "floatconv", func_floatconv },
|
|
#ifndef __VS_PROJECT__
|
|
#if !(defined(__GNUC__) && defined(_M_AMD64))
|
|
{ "ms-seh", func_ms_seh },
|
|
#endif
|
|
{ "pseh", func_pseh },
|
|
{ "pseh_cpp", func_pseh_cpp },
|
|
#endif /* __VS_PROJECT__ */
|
|
{ 0, 0 }
|
|
};
|