home *** CD-ROM | disk | FTP | other *** search
- {$if not def PREFS_SERIAL_H} CONST PREFS_SERIAL_H=TRUE;
-
- { ****************************************************************
- ** KickPascal-Include-Datei "prefs/serial.h" zu Kickstart 3.0 **
- **************************************************************** }
-
- {$if not def LIBRARIES_IFFPARSE_H;incl "libraries/iffparse.h";endif}
-
- CONST
- ID_SERL = $5345524c; { "SERL" }
-
- TYPE
- p_SerialPrefs=^SerialPrefs;
- SerialPrefs = RECORD
- sp_Reserved : array[0..2] of Long;
- sp_Unit0Map : Long;
- sp_BaudRate : Long;
- sp_InputBuffer : Long;
- sp_OutputBuffer : Long;
- sp_InputHandshake : Byte;
- sp_OutputHandshake : Byte;
- sp_Parity : Byte;
- sp_BitsPerChar : Byte;
- sp_StopBits : Byte;
- end;
-
- CONST
- PARITY_NONE = 0;
- PARITY_EVEN = 1;
- PARITY_ODD = 2;
- PARITY_MARK = 3;
- PARITY_SPACE = 4;
-
- HSHAKE_XON = 0;
- HSHAKE_RTS = 1;
- HSHAKE_NONE = 2;
-
- {$endif}
-