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