4c36c86eee4770d1c138510ee661aa21b141ab5d
[reactos.git] / modules / 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___rt_div(void);
8 extern void func___fto64(void);
9 extern void func__vscprintf(void);
10 extern void func__vscwprintf(void);
11 extern void func_atexit(void);
12 #endif
13 #if defined(TEST_NTDLL)
14 extern void func__vscwprintf(void);
15 #endif
16 extern void func_fputc(void);
17 extern void func_fputwc(void);
18 extern void func__snprintf(void);
19 extern void func__snwprintf(void);
20 extern void func__vsnprintf(void);
21 extern void func__vsnwprintf(void);
22 extern void func_mbstowcs(void);
23 extern void func_mbtowc(void);
24 extern void func_sprintf(void);
25 extern void func_strcpy(void);
26 extern void func_strlen(void);
27 extern void func_strnlen(void);
28 extern void func_strtoul(void);
29 extern void func_wcsnlen(void);
30 extern void func_wcstombs(void);
31 extern void func_wcstoul(void);
32 extern void func_wctomb(void);
33 extern void func___getmainargs(void);
34
35 extern void func_static_construct(void);
36 extern void func_static_init(void);
37
38 const struct test winetest_testlist[] =
39 {
40 { "_vsnprintf", func__vsnprintf },
41 { "_vsnwprintf", func__vsnwprintf },
42 { "mbstowcs", func_mbstowcs },
43 { "mbtowc", func_mbtowc },
44 { "_snprintf", func__snprintf },
45 { "_snwprintf", func__snwprintf },
46 { "sprintf", func_sprintf },
47 { "strcpy", func_strcpy },
48 { "strlen", func_strlen },
49 { "strtoul", func_strtoul },
50 { "wcstoul", func_wcstoul },
51 { "wctomb", func_wctomb },
52 { "wcstombs", func_wcstombs },
53 #if defined(TEST_CRTDLL) || defined(TEST_MSVCRT) || defined(TEST_STATIC_CRT)
54 // ...
55 #endif
56 #if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
57 // ...
58 #endif
59 #if defined(TEST_STATIC_CRT)
60 #elif defined(TEST_MSVCRT)
61 { "atexit", func_atexit },
62 #if defined(_M_IX86)
63 { "__getmainargs", func___getmainargs },
64 #elif defined(_M_ARM)
65 { "__rt_div", func___rt_div },
66 { "__fto64", func___fto64 },
67 #endif
68 { "_vscprintf", func__vscprintf },
69 { "_vscwprintf", func__vscwprintf },
70
71 { "static_construct", func_static_construct },
72 { "static_init", func_static_init },
73 #elif defined(TEST_NTDLL)
74 { "_vscwprintf", func__vscwprintf },
75 #elif defined(TEST_CRTDLL)
76 #endif
77 { 0, 0 }
78 };
79