1 /* BEGIN INCLUDE FILE ... emf_writing_modes.incl.pl1 */
 2 /* Created: 12 January 1979 by G. Palter */
 3 
 4 /* Constants defining the various modes of operation of emf_writing_util_ */
 5 
 6 dcl (DONT_CREATE_FILE              initial (0),             /* do not create the file and issue an error message */
 7      QUERY_TO_CREATE_FILE          initial (1),             /* ask the user for permission to create the file */
 8      CREATE_AND_ANNOUNCE_FILE      initial (2),             /* create the file and inform the user of this action */
 9      SILENTLY_CREATE_FILE          initial (3),             /* create the file but don't inform the user */
10 
11      TRUNCATE_FILE                 initial (1),             /* truncate the file if it already exists */
12      APPEND_FILE                   initial (2),             /* add the text to the end of the file */
13      PREFACE_FILE                  initial (3))             /* insert the text at the beginning of the file */
14 
15           fixed binary static options (constant);
16 
17 /* END INCLUDE FILE ... emf_writing_modes.incl.pl1 */