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