home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
packer
/
lzwp13
/
dummy_io.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-02-25
|
189 b
|
15 lines
unit DUMMY_IO;
interface
function Dummy(TheByte : Byte) : Integer;
implementation
function Dummy(TheByte : Byte) : Integer;
begin
(* into the bit bucket *)
end;
end.