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