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_wcsnlen(void);
39 extern void func_wcstombs(void);
40 extern void func_wcstoul(void);
41 extern void func_wctomb(void);
42 extern void func___getmainargs(void);
43 
44 extern void func_static_construct(void);
45 extern void func_static_init(void);
46 extern void func_crtdata(void);
47 
48 const struct test winetest_testlist[] =
49 {
50     { "_vsnprintf", func__vsnprintf },
51     { "_vsnwprintf", func__vsnwprintf },
52     { "mbstowcs", func_mbstowcs },
53     { "mbtowc", func_mbtowc },
54     { "_snprintf", func__snprintf },
55     { "_snwprintf", func__snwprintf },
56     { "sprintf", func_sprintf },
57     { "strcpy", func_strcpy },
58     { "strlen", func_strlen },
59     { "strtoul", func_strtoul },
60     { "wcstoul", func_wcstoul },
61     { "wctomb", func_wctomb },
62     { "wcstombs", func_wcstombs },
63 #if defined(TEST_CRTDLL) || defined(TEST_MSVCRT) || defined(TEST_STATIC_CRT)
64     // ...
65 #endif
66 #if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
67     { "ceil", func_ceil },
68     { "fabs", func_fabs },
69     { "floor", func_floor },
70 #ifdef _M_AMD64 // x86 / arm need fixing
71     { "fpcontrol", func_fpcontrol },
72 #endif
73 #if defined(_M_ARM)
74     { "__rt_div", func___rt_div },
75     { "__fto64", func___fto64 },
76     { "__64tof", func___64tof },
77 #endif
78 #endif
79 #if defined(TEST_STATIC_CRT)
80 #elif defined(TEST_MSVCRT)
81     { "atexit", func_atexit },
82     { "crtdata", func_crtdata },
83 #if defined(_M_IX86)
84     { "__getmainargs", func___getmainargs },
85 #endif
86     { "_vscprintf", func__vscprintf },
87     { "_vscwprintf", func__vscwprintf },
88 
89     { "static_construct", func_static_construct },
90     { "static_init", func_static_init },
91 #elif defined(TEST_NTDLL)
92     { "_vscwprintf", func__vscwprintf },
93 #elif defined(TEST_CRTDLL)
94 #endif
95     { 0, 0 }
96 };
97 
98