!*** MODULE $PPROPDEF *** !DEC$ OPTIONS/ALIGN=(RECORDS=PACKED,COMMONS=PACKED)/NOWARN ! + ! ! Set Process Properties Data Identifier Definitions ! ! **** NOTE **** ! ! New items must always be added to the END of each item list ! (preceeding the ENDlistname item) so that users will not have ! to relink. ! - ! Property definitions PARAMETER PPROP$C_PARSE_STYLE_TEMP = '00000000'X ! Change the parse style for the life of an image PARAMETER PPROP$C_PARSE_STYLE_PERM = '00000001'X ! Change the parse style for the life of the pro PARAMETER PPROP$C_HOME_RAD = '00000002'X ! Change the home rad of the thread PARAMETER PPROP$C_CASE_LOOKUP_TEMP = '00000003'X ! Change the case lookup mode for the life of an PARAMETER PPROP$C_CASE_LOOKUP_PERM = '00000004'X ! Change the case lookup mode for the life of th PARAMETER PPROP$C_MEDDLE_ENABLE = '00000005'X ! Record the fact of alterations to process logical ! names or symbols PARAMETER PPROP$C_MEDDLE = '00000006'X ! Process logical names or symbols have been altered PARAMETER PPROP$C_UNITS = '00000007'X ! Change the units for the life of the process (blocks/bytes) PARAMETER PPROP$C_SS_LOG_ENABLE = '00000008'X ! Enable system service logging for the process PARAMETER PPROP$C_SS_LOG_DISABLE = '00000009'X ! Disable system service logging for the process PARAMETER PPROP$C_SS_LOG_UNLOAD = '0000000A'X ! Stop system service logging & delete buffers PARAMETER PPROP$C_TOKEN = '0000000B'X ! Change the DCL token size for the life of the process PARAMETER PPROP$C_DEADLOCK_WAIT = '0000000C'X ! Change per-process deadlock wait (in 10msec units) ! Parse style definitions PARAMETER PARSE_STYLE$C_ODS2 = '00000000'X ! Values for the above properties (old name) PARAMETER PARSE_STYLE$C_ODS5 = '00000001'X ! Values for the above properties (old name) PARAMETER PARSE_STYLE$C_TRADITIONAL = '00000000'X ! Values for the above properties (new name) PARAMETER PARSE_STYLE$C_EXTENDED = '00000001'X ! Values for the above properties (new name) ! case lookup definitions PARAMETER PPROP$K_CASE_BLIND = '00000000'X ! case blind operation PARAMETER PPROP$K_CASE_SENSITIVE = '00000001'X ! case sensitive operation !DEC$ END OPTIONS