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