Newsgroups : Borland : borland.public.delphi.internet.winsock : 2005 Oct : About Winsock 2 header translation
| Subject: | About Winsock 2 header translation |
| Posted by: | "Olivier Pons" (olivier.pons@f.r.e.e.fr.remove.unnecessary.dots.com) |
| Date: | Tue, 25 Oct 2005 11:23:31 |
I still haven't found those declaration coming from winsock2 api
in the delphi-jedi project or anywhere else :
BOOL PASCAL ConnectEx(
SOCKET s,
const struct sockaddr* name,
int namelen,
PVOID lpSendBuffer,
DWORD dwSendDataLength,
LPDWORD lpdwBytesSent,
LPOVERLAPPED lpOverlapped
);
BOOL AcceptEx(
SOCKET sListenSocket,
SOCKET sAcceptSocket,
PVOID lpOutputBuffer,
DWORD dwReceiveDataLength,
DWORD dwLocalAddressLength,
DWORD dwRemoteAddressLength,
LPDWORD lpdwBytesReceived,
LPOVERLAPPED lpOverlapped
);
BOOL DisconnectEx(
SOCKET hSocket,
LPOVERLAPPED lpOverlapped,
DWORD dwFlags,
DWORD reserved
);
Any help would be greatly appreciated.