mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
ecc6804976
Convert dciman32api, user32api and wa2_32 into wine style tests svn path=/trunk/; revision=48619
19 lines
310 B
C
19 lines
310 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#define __ROS_LONG64__
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_ioctlsocket(void);
|
|
extern void func_recv(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "ioctlsocket", func_ioctlsocket },
|
|
{ "recv", func_recv },
|
|
|
|
{ 0, 0 }
|
|
};
|
|
|