home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d3xx
/
d339
/
pcq.lha
/
PCQ
/
Include
/
Serial.i
< prev
next >
Wrap
Text File
|
1990-03-19
|
623b
|
34 lines
{
These are a couple structures for serial IO stuff.
}
{$I "Include/ExecIO.i"}
const
SER_PARITYON = $01;
SER_PARITYODD = $02;
SER_SEVENWIRE = $04;
SER_QUEUEDBREAK = $08;
SER_HIGHSPEED = $10;
SER_SHARED = $20;
SER_EOFMODE = $40;
SER_DISABLED = $80;
type
IOExtSer = record
ioSer : IOStdReq;
ioCtlChar : array [0..3] of char;
ioRBufLen : integer;
ioWBufLen : integer;
ioBaud : integer;
ioBrkTime : integer;
ioTermArray : array [0..7] of char;
ioReadLen : byte;
ioWriteLen : byte;
ioStopBits : byte;
ioSerFlags : byte;
ioStatus : short;
end;