Sorry for my ignorance here, but I am not sure what these items are referred to in MicroFOCUS, and have not logged into the support site in quite a bit, and they completely changed the website, and the Documentation that is there is mostly how to install and setup Visual COBOL version 9, but the actual USER COBOL documentation I am unable to locate at all, so not sure what these are called. But We have always had 4 items included in the top of each program
$ SET REMOVE "ENTRY"
$ SET COPYLIST
$ SET REF
$ SET RTNCODE-SIZE(4)
ENVIRONMENT DIVISION.
REMOVE
Removes words from the reserved word list, so that they can be used as user-defined words.
These two are directives for the compiler listing
COPYLIST
Makes the Compiler list the contents of files named in COPY statements.
REF
Includes the address and line numbers of data items in the Data Division
RTNCODE-SIZE
Specifies the size of the RETURN-CODE special register and its alignment in memory.
Syntax:
-.---.--RTNCODE-SIZE--"integer"----------><
+-/-+
Parameters:
integer One of:
2 PIC S9(4) COMP: size 2 bytes, aligned on a two-byte boundary.
4 PIC S9(9) COMP: size 4 bytes, aligned on a four-byte boundary.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sorry for my ignorance here, but I am not sure what these items are referred to in MicroFOCUS, and have not logged into the support site in quite a bit, and they completely changed the website, and the Documentation that is there is mostly how to install and setup Visual COBOL version 9, but the actual USER COBOL documentation I am unable to locate at all, so not sure what these are called. But We have always had 4 items included in the top of each program
$ SET REMOVE "ENTRY"
$ SET COPYLIST
$ SET REF
$ SET RTNCODE-SIZE(4)
ENVIRONMENT DIVISION.
REMOVE
Removes words from the reserved word list, so that they can be used as user-defined words.
These two are directives for the compiler listing
COPYLIST
Makes the Compiler list the contents of files named in COPY statements.
REF
Includes the address and line numbers of data items in the Data Division
RTNCODE-SIZE
Specifies the size of the RETURN-CODE special register and its alignment in memory.
Syntax: