* remove unsupported syntax

This commit is contained in:
peter 2004-05-24 15:31:44 +00:00
parent a966964657
commit 6ecc535b18

View File

@ -12,8 +12,8 @@ var
// Delphi accepts this.
WSAStartup: function(wVersionRequired: Word; var WSData: TWSAData): Integer stdcall = nil;
// FPC accepts this.
WSAStartup2: function(wVersionRequired: Word; var WSData: TWSAData): Integer = nil; stdcall;
// FPC should accept this too
WSAStartup2: function(wVersionRequired: Word; var WSData: TWSAData): Integer;stdcall = nil;
implementation