780c73954c373dd221b96cee8a741d124cbeab1a
[reactos.git] / rostests / apitests / crt / testlist.c
1 #define WIN32_LEAN_AND_MEAN
2 #define __ROS_LONG64__
3 #include <windows.h>
4
5 #define STANDALONE
6 #include "wine/test.h"
7
8 extern void func__vsnprintf(void);
9 extern void func_sprintf(void);
10 extern void func_strcpy(void);
11
12 const struct test winetest_testlist[] =
13 {
14 { "_vsnprintf", func__vsnprintf },
15 { "sprintf", func_sprintf },
16 { "strcpy", func_strcpy },
17 #if defined(TEST_CRTDLL) || defined(TEST_MSVCRT) || defined(TEST_STATIC_CRT)
18 // ...
19 #endif
20 #if defined(TEST_STATIC_CRT) || defined(TEST_MSVCRT)
21 // ...
22 #endif
23 #if defined(TEST_STATIC_CRT)
24 #elif defined(TEST_MSVCRT)
25 #elif defined(TEST_NTDLL)
26 #elif defined(TEST_CRTDLL)
27 #endif
28 { 0, 0 }
29 };
30