mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
005d1d2a0c
Add a test framework for crt (ntdll, crtdll, msvcrt and static) svn path=/trunk/; revision=56363
21 lines
385 B
C
21 lines
385 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#define __ROS_LONG64__
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_strcpy(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "strcpy", func_strcpy },
|
|
#if defined(TEST_CRTDLL) || defined(TEST_MSVCRT)
|
|
// ...
|
|
#elif defined(TEST_MSVCRT)
|
|
#elif defined(TEST_NTDLL)
|
|
#elif defined(TEST_CRTDLL)
|
|
#endif
|
|
{ 0, 0 }
|
|
};
|
|
|