mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
c91fecf968
It currently tests the features I needed to adjust/implement when fixing the wininet problem. ReactOS currently passes all tests, but fails one if you launch the test app for the second time quickly after the first time (timing problem in the network code?). - Fix the behaviour on an ioctlsocket FIONREAD call: The output buffer is not touched, when we have no socket, but when we have no connection, it is set to 0. - Forward the socket call to WSASocketW instead of WSASocketA, minimal performance improvement svn path=/trunk/; revision=33824
25 lines
438 B
C
25 lines
438 B
C
/*
|
|
* PROJECT: ws2_32.dll API tests
|
|
* LICENSE: GPLv2 or any later version
|
|
* FILE: apitests/ws2_32/ws2_32.c
|
|
* PURPOSE: Program entry point
|
|
* COPYRIGHT: Copyright 2008 Colin Finck <mail@colinfinck.de>
|
|
*/
|
|
|
|
#include "ws2_32.h"
|
|
|
|
HANDLE g_hHeap;
|
|
|
|
BOOL
|
|
IsFunctionPresent(LPWSTR lpszFunction)
|
|
{
|
|
return TRUE;
|
|
}
|
|
|
|
int wmain()
|
|
{
|
|
g_hHeap = GetProcessHeap();
|
|
|
|
return TestMain(L"ws2_32_apitests", L"ws2_32.dll");
|
|
}
|