mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
68 lines
1.8 KiB
C
68 lines
1.8 KiB
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_fputc(void);
|
|
extern void func_fputwc(void);
|
|
extern void func__snprintf(void);
|
|
extern void func__snwprintf(void);
|
|
extern void func__vsnprintf(void);
|
|
extern void func__vsnwprintf(void);
|
|
extern void func_mbstowcs(void);
|
|
extern void func_sprintf(void);
|
|
extern void func_strcpy(void);
|
|
extern void func_strlen(void);
|
|
extern void func_strnlen(void);
|
|
extern void func_strtoul(void);
|
|
extern void func_wcsnlen(void);
|
|
extern void func_wcstombs(void);
|
|
extern void func_wcstoul(void);
|
|
extern void func___getmainargs(void);
|
|
|
|
extern void func_static_construct(void);
|
|
extern void func_static_init(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "_vsnprintf", func__vsnprintf },
|
|
{ "_vsnwprintf", func__vsnwprintf },
|
|
{ "mbstowcs", func_mbstowcs },
|
|
{ "_snprintf", func__snprintf },
|
|
{ "_snwprintf", func__snwprintf },
|
|
{ "sprintf", func_sprintf },
|
|
{ "strcpy", func_strcpy },
|
|
{ "strlen", func_strlen },
|
|
{ "strtoul", func_strtoul },
|
|
{ "wcstoul", func_wcstoul },
|
|
{ "wcstombs", func_wcstombs },
|
|
#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)
|
|
#if defined(_M_IX86)
|
|
{ "__getmainargs", func___getmainargs },
|
|
#endif
|
|
{ "_vscprintf", func__vscprintf },
|
|
{ "_vscwprintf", func__vscwprintf },
|
|
|
|
{ "static_construct", func_static_construct },
|
|
{ "static_init", func_static_init },
|
|
#elif defined(TEST_NTDLL)
|
|
{ "_vscwprintf", func__vscwprintf },
|
|
#elif defined(TEST_CRTDLL)
|
|
#endif
|
|
{ 0, 0 }
|
|
};
|
|
|