/* * * Pseudo Terminal Driver notification ast type definitions. (VMS V5.4) */ #ifndef _PTDDEF_H #define _PTDDEF_H #define PTD$C_SEND_XON 0 /* enable or disable XON AST */ #define PTD$C_SEND_BELL 1 /* enable or disable BELL AST */ #define PTD$C_SEND_XOFF 2 /* enable or disable XOFF AST */ #define PTD$C_STOP_OUTPUT 3 /* enable or disable stop output AST */ #define PTD$C_RESUME_OUTPUT 4 /* enable or disable resume output AST */ #define PTD$C_CHAR_CHANGED 5 /* enable or disable characteristics change AST */ #define PTD$C_ABORT_OUTPUT 6 /* enable or disable abort output AST */ #define PTD$C_START_READ 7 /* enable or disable start read AST */ #define PTD$C_MIDDLE_READ 8 /* enable or disable middle read AST */ #define PTD$C_END_READ 9 /* enable or disable end read AST */ #define PTD$C_ENABLE_READ 10 /* enable read ASTs */ #define PTD$C_DISABLE_READ 11 /* disable read ASTs */ #define PTD$C_MAX_EVENTS 12 #endif /*_PTDDEF_H*/