[CRT_APITEST]
[reactos.git] / rostests / apitests / crt / testlist.c
1 #define __ROS_LONG64__
2
3 #define STANDALONE
4 #include <apitest.h>
5
6 #if defined(TEST_MSVCRT)
7 extern void func__vscprintf(void);
8 extern void func__vscwprintf(void);
9 #endif
10 #if defined(TEST_NTDLL)
11 extern void func__vscwprintf(void);
12 #endif
13 extern void func__vsnprintf(void);
14 extern void func__vsnwprintf(void);
15 extern void func_mbstowcs(void);
16 extern void func_sprintf(void);
17 extern void func_strcpy(void);
18 extern void func_wcstombs(void);
19
20 extern void func_static_construct(void);
21 extern void func_static_init(void);
22
23 const struct test winetest_testlist[] =
24 {
25 { "_vsnprintf", func__vsnprintf },
26 { "_vsnwprintf", func__vsnwprintf },
27 { "mbstowcs", func_mbstowcs },
28 { "sprintf", func_sprintf },
29 { "strcpy", func_strcpy },
30 { "wcstombs", func_wcstombs },
31 #if defined(TEST_CRTDLL) || defined(TEST_MSVCRT) || defined(TEST_STATIC_CRT)
32 // ...
33 #endif
34 #if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
35 // ...
36 #endif
37 #if defined(TEST_STATIC_CRT)
38 #elif defined(TEST_MSVCRT)
39 { "_vscprintf", func__vscprintf },
40 { "_vscwprintf", func__vscwprintf },
41
42 { "static_construct", func_static_construct },
43 { "static_init", func_static_init },
44 #elif defined(TEST_NTDLL)
45 { "_vscwprintf", func__vscwprintf },
46 #elif defined(TEST_CRTDLL)
47 #endif
48 { 0, 0 }
49 };
50