mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
934a5546ea
* Don't enable wcstombs_s() tests (it shouldn't be exported). CORE-7889 svn path=/trunk/; revision=63401
40 lines
976 B
C
40 lines
976 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
#if defined(TEST_MSVCRT)
|
|
extern void func__vscprintf(void);
|
|
extern void func__vscwprintf(void);
|
|
#endif
|
|
#if defined(TEST_NTDLL)
|
|
extern void func__vscwprintf(void);
|
|
#endif
|
|
extern void func__vsnprintf(void);
|
|
extern void func__vsnwprintf(void);
|
|
extern void func_sprintf(void);
|
|
extern void func_strcpy(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "_vsnprintf", func__vsnprintf },
|
|
{ "_vsnwprintf", func__vsnwprintf },
|
|
{ "sprintf", func_sprintf },
|
|
{ "strcpy", func_strcpy },
|
|
#if defined(TEST_CRTDLL) || defined(TEST_MSVCRT) || defined(TEST_STATIC_CRT)
|
|
// ...
|
|
#endif
|
|
#if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
|
|
// ...
|
|
#endif
|
|
#if defined(TEST_STATIC_CRT)
|
|
#elif defined(TEST_MSVCRT)
|
|
{ "_vscprintf", func__vscprintf },
|
|
{ "_vscwprintf", func__vscwprintf },
|
|
#elif defined(TEST_NTDLL)
|
|
{ "_vscwprintf", func__vscwprintf },
|
|
#elif defined(TEST_CRTDLL)
|
|
#endif
|
|
{ 0, 0 }
|
|
};
|
|
|