[HEADERS]
[reactos.git] / rostests / apitests / ws2_32 / ws2_32.c
1 /*
2 * PROJECT: ws2_32.dll API tests
3 * LICENSE: GPLv2 or any later version
4 * FILE: apitests/ws2_32/ws2_32.c
5 * PURPOSE: Program entry point
6 * COPYRIGHT: Copyright 2008 Colin Finck <mail@colinfinck.de>
7 */
8
9 #include "ws2_32.h"
10
11 HANDLE g_hHeap;
12
13 BOOL
14 IsFunctionPresent(LPWSTR lpszFunction)
15 {
16 return TRUE;
17 }
18
19 int wmain()
20 {
21 g_hHeap = GetProcessHeap();
22
23 return TestMain(L"ws2_32_apitests", L"ws2_32.dll");
24 }