1234567891011121314151617181920212223242526272829303132 |
- { Source provided for Free Pascal Bug Report 2944 }
- { Submitted by "marco (gory bugs department)" on 2004-02-06 }
- { e-mail: }
- {$ifdef fpc}{$mode Delphi}{$endif}
- type
- {$ifndef fpc}
- CodePointer = Pointer;
- PCodePointer = PPointer;
- {$endif}
- WS2StubEntry = record
- StubProc : CodePointer;
- ProcVar : PCodePointer;
- Name : PChar;
- end;
- LPFN_WSACLEANUP = function : Integer; stdcall;
- var WSACleanup : LPFN_WSACLEANUP;
- procedure WS2Stub_WSACleanup;
- begin
- end;
- CONST
- WS2StubEntryCount = 1;
- WS2StubTable : Array [0..WS2StubEntryCount-1] of WS2StubEntry = (
- (StubProc: @WS2Stub_WSACleanup; ProcVar: @@WSACleanup; Name: 'WSACleanup'));
- begin
- end.
|