1 #define __ROS_LONG64__
2 
3 #define STANDALONE
4 #include <apitest.h>
5 
6 extern void func__mbsncmp(void);
7 extern void func__mbsstr(void);
8 #if defined(TEST_MSVCRT)
9 extern void func__vscprintf(void);
10 extern void func__vscwprintf(void);
11 extern void func_atexit(void);
12 #endif
13 #if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
14 #if defined(_M_ARM)
15 extern void func___rt_div(void);
16 extern void func___fto64(void);
17 extern void func___64tof(void);
18 #endif
19 #endif
20 #if defined(TEST_NTDLL)
21 extern void func__vscwprintf(void);
22 #endif
23 extern void func_ceil(void);
24 extern void func_fabs(void);
25 extern void func_floor(void);
26 extern void func_fpcontrol(void);
27 extern void func_fputc(void);
28 extern void func_fputwc(void);
29 extern void func__snprintf(void);
30 extern void func__snwprintf(void);
31 extern void func__vsnprintf(void);
32 extern void func__vsnwprintf(void);
33 extern void func_mbstowcs(void);
34 extern void func_mbtowc(void);
35 extern void func_sprintf(void);
36 extern void func_strcpy(void);
37 extern void func_strlen(void);
38 extern void func_strnlen(void);
39 extern void func_strtoul(void);
40 extern void func_system(void);
41 extern void func_wcsnlen(void);
42 extern void func_wcstombs(void);
43 extern void func_wcstoul(void);
44 extern void func_wctomb(void);
45 extern void func__wsystem(void);
46 extern void func___getmainargs(void);
47 
48 extern void func_static_construct(void);
49 extern void func_static_init(void);
50 extern void func_crtdata(void);
51 
52 const struct test winetest_testlist[] =
53 {
54     { "_vsnprintf", func__vsnprintf },
55     { "_vsnwprintf", func__vsnwprintf },
56     { "mbstowcs", func_mbstowcs },
57     { "mbtowc", func_mbtowc },
58     { "_snprintf", func__snprintf },
59     { "_snwprintf", func__snwprintf },
60     { "sprintf", func_sprintf },
61     { "strcpy", func_strcpy },
62     { "strlen", func_strlen },
63     { "strtoul", func_strtoul },
64 #if defined(TEST_CRTDLL) || defined(TEST_MSVCRT)
65     { "_mbsncmp", func__mbsncmp },
66     { "_mbsstr", func__mbsstr },
67     { "system", func_system },
68 #endif
69 #if defined(TEST_MSVCRT)
70     { "_wsystem", func__wsystem },
71 #endif
72     { "wcstoul", func_wcstoul },
73     { "wctomb", func_wctomb },
74     { "wcstombs", func_wcstombs },
75 #if defined(TEST_CRTDLL) || defined(TEST_MSVCRT) || defined(TEST_STATIC_CRT)
76     // ...
77 #endif
78 #if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
79     { "ceil", func_ceil },
80     { "fabs", func_fabs },
81     { "floor", func_floor },
82 #ifdef _M_AMD64 // x86 / arm need fixing
83     { "fpcontrol", func_fpcontrol },
84 #endif
85 #if defined(_M_ARM)
86     { "__rt_div", func___rt_div },
87     { "__fto64", func___fto64 },
88     { "__64tof", func___64tof },
89 #endif
90 #endif
91 #if defined(TEST_STATIC_CRT)
92 #elif defined(TEST_MSVCRT)
93     { "atexit", func_atexit },
94     { "crtdata", func_crtdata },
95 #if defined(_M_IX86)
96     { "__getmainargs", func___getmainargs },
97 #endif
98     { "_vscprintf", func__vscprintf },
99     { "_vscwprintf", func__vscwprintf },
100 
101     { "static_construct", func_static_construct },
102     { "static_init", func_static_init },
103 #elif defined(TEST_NTDLL)
104     { "_vscwprintf", func__vscwprintf },
105 #elif defined(TEST_CRTDLL)
106 #endif
107     { 0, 0 }
108 };
109 
110