home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 2000 March
/
pcp161b.iso
/
full
/
delphi
/
RUNIMAGE
/
DELPHI30
/
LIB
/
scktreg.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1997-08-04
|
222 b
|
19 lines
unit ScktReg;
interface
uses Classes, ScktComp;
procedure Register;
implementation
{$R *.RES}
procedure Register;
begin
RegisterComponents('Internet', [TClientSocket, TServerSocket]);
end;
end.