mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
fe6644f895
- No need now to declare a NTSTATUS ExceptionStatus; variable to be able to use StartSeh() / EndSeh() macros; this is done automagically. - Use explicitely unicode macros where it's needed. svn path=/trunk/; revision=60319
20 lines
410 B
C
20 lines
410 B
C
#define __ROS_LONG64__
|
|
|
|
#define STANDALONE
|
|
#include <apitest.h>
|
|
|
|
extern void func_getaddrinfo(void);
|
|
extern void func_ioctlsocket(void);
|
|
extern void func_recv(void);
|
|
extern void func_WSAStartup(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "getaddrinfo", func_getaddrinfo },
|
|
{ "ioctlsocket", func_ioctlsocket },
|
|
{ "recv", func_recv },
|
|
{ "WSAStartup", func_WSAStartup },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|