* minor typos in winsock.pp fixed

+ makefile for sockets.pp updated
This commit is contained in:
florian 1999-06-21 12:41:33 +00:00
parent eea0e30b06
commit eed51e6bd5
2 changed files with 26 additions and 9 deletions

View File

@ -66,6 +66,7 @@ LOADEROBJECTS=wprt0 wdllprt0
# Unit Objects
UNITOBJECTS=$(SYSTEMUNIT) objpas strings \
windows ole2 opengl32 winsock \
sockets \
dos crt objects \
sysutils typinfo math \
cpu mmx getopts heaptrc
@ -210,6 +211,9 @@ ole2$(PPUEXT) : ole2.pp windows$(PPUEXT) $(SYSTEMPPU)
winsock$(PPUEXT) : winsock.pp windows$(PPUEXT) $(SYSTEMPPU)
sockets$(PPUEXT) : sockets.pp windows$(PPUEXT) winsock$(PPUEXT) $(SYSTEMPPU) \
$(INC)/sockets.inc $(INC)/socketsh.inc
#
# TP7 Compatible RTL Units
#
@ -384,7 +388,11 @@ endif
#
# $Log$
# Revision 1.33 1999-06-18 13:59:49 florian
# Revision 1.34 1999-06-21 12:41:33 florian
# * minor typos in winsock.pp fixed
# + makefile for sockets.pp updated
#
# Revision 1.33 1999/06/18 13:59:49 florian
# * changes for the winsock unit
#
# Revision 1.32 1999/06/10 15:02:15 peter

View File

@ -662,9 +662,10 @@ unit winsock;
function closesocket(s:TSocket):longint;stdcall;
function connect(s:TSocket; var name:TSockAddr; namelen:longint):longint;stdcall;
function ioctlsocket(s:TSocket; cmd:longint; argp:pu_long):longint;stdcall;
function getpeername(s:TSocket; var name:TSockAddr;namelen:plongint):longint;stdcall;
function getsockname(s:TSocket; var name:TSockAddr; namelen:plongint):longint;stdcall;
function getpeername(s:TSocket; var name:TSockAddr;var namelen:longint):longint;stdcall;
function getsockname(s:TSocket; var name:TSockAddr;var namelen:longint):longint;stdcall;
function getsockopt(s:TSocket; level:longint; optname:longint; optval:pchar;var optlen:longint):longint;stdcall;
function getsockopt(s:TSocket; level:longint; optname:longint; var optval; var optlen:longint):longint;stdcall;
function htonl(hostlong:u_long):u_long;stdcall;
function htons(hostshort:u_short):u_short;
function inet_addr(cp:pchar):cardinal;stdcall;
@ -678,6 +679,7 @@ unit winsock;
function send(s:TSocket;var buf; len:longint; flags:longint):longint;stdcall;
function sendto(s:TSocket; buf:pchar; len:longint; flags:longint;var toaddr:TSockAddr; tolen:longint):longint;stdcall;
function setsockopt(s:TSocket; level:longint; optname:longint; optval:pchar; optlen:longint):longint;stdcall;
function setsockopt(s:TSocket; level:longint; optname:longint; var optval; optlen:longint):longint;stdcall;
function shutdown(s:TSocket; how:longint):longint;stdcall;
function socket(af:longint; t:longint; protocol:longint):TSocket;stdcall;
@ -750,12 +752,14 @@ unit winsock;
function closesocket(s:TSocket):longint;stdcall;external winsockdll name 'closesocket';
function connect(s:TSocket; var name:TSockAddr; namelen:longint):longint;stdcall;external winsockdll name 'connect';
function ioctlsocket(s:TSocket; cmd:longint; argp:pu_long):longint;stdcall;external winsockdll name 'ioctlsocket';
function getpeername(s:TSocket; var name:TSockAddr;namelen:plongint):longint;stdcall;
function getpeername(s:TSocket; var name:TSockAddr;var namelen:longint):longint;stdcall;
external winsockdll name 'getpeername';
function getsockname(s:TSocket; var name:TSockAddr; namelen:plongint):longint;stdcall;
function getsockname(s:TSocket; var name:TSockAddr;var namelen:longint):longint;stdcall;
external winsockdll name 'getsockname';
function getsockopt(s:TSocket; level:longint; optname:longint; optval:pchar;var optlen:longint):longint;stdcall;
external winsockdll name 'getsockopt';
function getsockopt(s:TSocket; level:longint; optname:longint;var optval;var optlen:longint):longint;stdcall;
external winsockdll name 'getsockopt';
function htonl(hostlong:u_long):u_long;stdcall;external winsockdll name 'htonl';
function htons(hostshort:u_short):u_short;external winsockdll name 'htons';
function inet_addr(cp:pchar):cardinal;stdcall;external winsockdll name 'inet_addr';
@ -765,7 +769,7 @@ unit winsock;
function ntohs(netshort:u_short):u_short;stdcall;external winsockdll name 'ntohs';
function recv(s:TSocket;var buf; len:longint; flags:longint):longint;stdcall;external winsockdll name 'recv';
function recvfrom(s:TSocket;var buf; len:longint; flags:longint;var from:TSockAddr; fromlen:plongint):longint;stdcall;
external winsockdll name 'recvfrom';
external winsockdll name 'recvfrom';
function select(nfds:longint; readfds,writefds,exceptfds : PFDSet;timeout: PTimeVal):longint;stdcall;
external winsockdll name 'select';
function send(s:TSocket;var buf; len:longint; flags:longint):longint;stdcall;
@ -774,6 +778,8 @@ unit winsock;
external winsockdll name 'sendto';
function setsockopt(s:TSocket; level:longint; optname:longint; optval:pchar; optlen:longint):longint;stdcall;
external winsockdll name 'setsockopt';
function setsockopt(s:TSocket; level:longint; optname:longint; var optval; optlen:longint):longint;stdcall;
external winsockdll name 'setsockopt';
function shutdown(s:TSocket; how:longint):longint;stdcall;
external winsockdll name 'shutdown';
function socket(af:longint; t:longint; protocol:longint):TSocket;stdcall;
@ -790,7 +796,7 @@ unit winsock;
{ Microsoft Windows Extension function prototypes }
function WSAStartup(wVersionRequired:word;var WSAData:TWSADATA):longint;stdcall;
external winsockdll name 'WSAAsyncSelect';
external winsockdll name 'WSAStartup';
function WSACleanup:longint;stdcall;external winsockdll name 'WSACleanup';
procedure WSASetLastError(iError:longint);stdcall;external winsockdll name 'WSASetLastError';
function WSAGetLastError:longint;stdcall;external winsockdll name 'WSAGetLastError';
@ -923,8 +929,11 @@ unit winsock;
end.
{
$Log$
Revision 1.1 1999-06-18 13:58:59 florian
Revision 1.2 1999-06-21 12:41:34 florian
* minor typos in winsock.pp fixed
+ makefile for sockets.pp updated
Revision 1.1 1999/06/18 13:58:59 florian
+ initial revision, should be completly compatible with the delphi
winsock unit
}