mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +00:00

[WS2_32_APITEST] - Make WSAStartup test more robust and stricter svn path=/trunk/; revision=56804
15 lines
253 B
C
15 lines
253 B
C
#define WIN32_LEAN_AND_MEAN
|
|
#define __ROS_LONG64__
|
|
#include <windows.h>
|
|
|
|
#define STANDALONE
|
|
#include "wine/test.h"
|
|
|
|
extern void func_WinHttpOpen(void);
|
|
|
|
const struct test winetest_testlist[] =
|
|
{
|
|
{ "WinHttpOpen", func_WinHttpOpen },
|
|
|
|
{ 0, 0 }
|
|
};
|