!*** MODULE $PTDDEF *** !DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN ! + ! ! Pseudo terminal driver notification AST type definitions. ! ! N.B. ! These definitions are in a specific order and must not be changed ! without matching changes to FTUCBDEF, and FTDRIVER. ! ! - PARAMETER PTD$C_SEND_XON = '00000000'X ! Enable or disable XON AST PARAMETER PTD$C_SEND_BELL = '00000001'X ! Enable or disable BELL AST PARAMETER PTD$C_SEND_XOFF = '00000002'X ! Enable or disable XOFF AST PARAMETER PTD$C_STOP_OUTPUT = '00000003'X ! Enable or disable stop output AST PARAMETER PTD$C_RESUME_OUTPUT = '00000004'X ! Enable or disable resume output AST PARAMETER PTD$C_CHAR_CHANGED = '00000005'X ! Enable or disable characteristics change AST PARAMETER PTD$C_ABORT_OUTPUT = '00000006'X ! Enable or disable abort output AST PARAMETER PTD$C_START_READ = '00000007'X ! Enable or disable start read AST PARAMETER PTD$C_MIDDLE_READ = '00000008'X ! Enable or disable middle read AST PARAMETER PTD$C_END_READ = '00000009'X ! Enable or disable end read AST PARAMETER PTD$C_ENABLE_READ = '0000000A'X ! Enable read ASTs PARAMETER PTD$C_DISABLE_READ = '0000000B'X ! Disable read ASTs PARAMETER PTD$C_MAX_EVENTS = '0000000C'X !DEC$ END OPTIONS