mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 03:27:31 +00:00
22 lines
385 B
C
22 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 }
|
||
|
};
|
||
|
|