home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l360 / 1.ddi / CBL-CMPT.DOC < prev    next >
Encoding:
Text File  |  1991-07-02  |  27.6 KB  |  672 lines

  1.  
  2.                              CBL-CMPT.DOC File
  3.  
  4.           Compatibility with Previous Releases of Microsoft(R) COBOL
  5.  
  6.                  (C) Copyright Microsoft Corporation, 1991
  7.  
  8.  
  9.    Contents
  10.    --------
  11.        Introduction
  12.        Changes in Microsoft COBOL 4.5
  13.        Changes in Microsoft COBOL 4.0
  14.        Documentation
  15.  
  16.  
  17.    Introduction
  18.    ------------
  19.    This document is for use when maintaining applications created using
  20.    earlier releases of this product.
  21.  
  22.    It describes the differences that may cause problems, and includes
  23.    documentation of features no longer documented in this system, but
  24.    maintained for compatibility.
  25.  
  26.    Note that the use of the compiler with default settings will cause the
  27.    use of new words to become reserved.  A list of these words is given
  28.    below.
  29.  
  30.  
  31.    Changes in Microsoft COBOL 4.5
  32.    ------------------------------
  33.    Compiling
  34.  
  35.     o  Use of the MF directive when compiling will cause some data names
  36.        to be illegal as the reserved word list has been extended.  Change
  37.        the dataname, use the REMOVE(reservedword) directive or recompile
  38.        with MF(6).
  39.  
  40.        New reserved words included when using MF(7) are:
  41.  
  42.        ALPHABET        ALPHABETIC-LOWER        ALPHABETIC-UPPER
  43.        ALPHANUMERIC    ALPHANUMERIC-EDITED     ANY
  44.        BINARY          CLASS                   COMMON
  45.        COMP-1          COMP-2                  COMP-4
  46.        COMPUTATIONAL-1 COMPUTATIONAL-2         COMPUTATIONAL-4
  47.        CONTENT         CONTINUE                CONVERTING
  48.        CYCLE           DAY-OF-WEEK             DBCS
  49.        DISPLAY-1       EJECT                   END-ADD
  50.        END-CALL        END-COMPUTE             END-DELETE
  51.        END-DISPLAY     END-DIVIDE              END-EVALUATE
  52.        END-IF          END-MULTIPLY            END-PERFORM
  53.        END-READ        END-RECEIVE             END-RETURN
  54.        END-REWRITE     END-SEARCH              END-START
  55.        END-STRING      END-SUBTRACT            END-UNSTRING
  56.        END-WRITE       EOL                     EOS
  57.        EQUALS          EVALUATE                EXCEEDS
  58.        FALSE           FUNCTION                GLOBAL
  59.        ID              INITIALIZE              LOWLIGHT
  60.        NUMERIC-EDITED  ORDER                   OTHER
  61.        PACKED-DECIMAL  PADDING                 PARAGRAPH
  62.        PURGE           REFERENCE               REPLACE
  63.        SKIP1           SKIP2                   SKIP3
  64.        SORT-RETURN     STANDARD-2              TEST
  65.        TIME-OUT        TIMEOUT                 TITLE
  66.        TRUE            UNEQUAL                 WAIT
  67.        WHEN-COMPILED
  68.  
  69.       Note that most of these words are already reserved under the ANS85 or
  70.       VSC2 directives, so will only become new if you are compiling with MF
  71.       but without ANS85 or VSC2.
  72.  
  73.    o  RM compatibility
  74.  
  75.       When compiling for RM compatibility, if the same behavior is required
  76.       as with Microsoft COBOL 4.0 then you should compile with the
  77.       DETECTLOCK directive.
  78.  
  79.    o  ASSIGN TO PRINTER
  80.  
  81.       Files defined with ASSIGN TO PRINTER are treated as LINE ADVANCING in
  82.       COBOL 4.5. In 4.0, they were treated as LINE SEQUENTIAL.
  83.  
  84.    o  NEXT SENTENCE
  85.  
  86.       In COBOL 4.0, you could make NEXT SENTENCE jump to the appropriate
  87.       end-scope delimiter by using the MF"5" directive (see below). In 4.5
  88.       this directive does not have this effect.
  89.  
  90.    o  Nested Programs
  91.  
  92.       In V4.0, nested programs could have Configuration Sections. In V4.5
  93.       they cannot.
  94.  
  95.    o  The "DISPLAY ... UPON CRT Attributes Behavior" switch S6 is no longer
  96.       documented in the Operating Guide. Here is its description. With the
  97.       Enhanced DISPLAY (see the Screen Handling chapter of the Language
  98.       Reference Manual), if no attributes are specified on the DISPLAY then,
  99.       by default, the attributes already existing in the given area will be
  100.       used. If the switch +S6 is specified at run time the normal screen
  101.       attributes will be used instead.
  102.  
  103.    o  In earlier versions of this COBOL system all system library routines
  104.       were call-by-number. Many of the call-by-name routines in the present
  105.       product replace old call-by-number routines. The list below indicates,
  106.       for each call-by-name routine that has replaced a call-by-number
  107.       routine, the number of the routine it has replaced. In some cases the
  108.       call-by-name routine has additional features.
  109.  
  110.        Name                   Number
  111.        ----                   ------
  112.        CBL_READ_SCR_CHARS       B7 0
  113.        CBL_READ_SCR_ATTRS       B7 2
  114.        CBL_READ_SCR_CHATTRS     B8 0
  115.        CBL_WRITE_SCR_CHARS      B7 1
  116.        CBL_WRITE_SCR_ATTRS      B7 3
  117.        CBL_WRITE_SCR_CHATTRS    B8 1
  118.        CBL_WRITE_SCR_TTY        82
  119.        CBL_WRITE_SCR_N_CHAR     B7 4
  120.        CBL_WRITE_SCR_N_ATTR     B7 5
  121.        CBL_SWAP_SCR_CHATTRS     B8 2
  122.        CBL_GET_SCR_SIZE         E3
  123.        CBL_SET_CSR_POS          E6
  124.        CBL_CLEAR_SCR            E4
  125.        CBL_GET_KBD_STATUS       D9
  126.        PC_READ_DRIVE            91 5
  127.        PC_SET_DRIVE             91 6
  128.        CBL_READ_DIR             91 7
  129.        CBL_CHANGE_DIR           91 8
  130.        CBL_DELETE_FILE          91 18
  131.        CBL_RENAME_FILE          91 17
  132.        PC_TEST_PRINTER          B0 7
  133.        CBL_SPLIT_FILENAME       8C
  134.        CBL_JOIN_FILENAME        8D
  135.  
  136.    o  The behavior of COPY ... REPLACING has been changed depending on the
  137.       setting of the ANS85 or VSC2(3) directives. Previously all non-COBOL
  138.       characters were disallowed in operands to COPY ... REPLACING, and
  139.       lowercase and colon were added to the character set. This behavior now
  140.       only occurs if the ANS85 or VSC2(3) directive is used. Otherwise, the
  141.       operands may contain non-COBOL characters.
  142.  
  143.  
  144.    Changes in Microsoft COBOL 4.0
  145.    ------------------------------
  146.    General
  147.  
  148.     o  When installing on an OS/2 system, SETUP will add PATH and
  149.        environment variable information to CONFIG.SYS and not to OS2INIT.CMD
  150.        as in previous releases. This conforms with the standard for
  151.        installing OS/2 v1.1 and later.
  152.  
  153.     o  The files, DBCS.EXE/.DLL and V-ISAM.DLL are no longer required, and
  154.        are not included with this release.
  155.  
  156.     o  The shared run-time files, COBLIB.DLE and COBLIB.DLL are used by the
  157.        components of this system, and must be loaded for the system to
  158.        operate. COBLIB.DLE is required for DOS, COBLIB.DLL for OS/2.
  159.  
  160.     o  The callable file handler interface is no longer part of this
  161.        product. If you wish to use the CALLFH feature, or to call the file
  162.        handler directly, you will require a copy of the Micro Focus COBOL/2
  163.        Toolset.
  164.  
  165.    Compiling
  166.  
  167.     o  The default directives, NOCOPYLBR, ANS85, NOOSVS and MF are now built
  168.        into the compiler and are not included in the COBOL.DIR created by
  169.        SETUP. ANS85 and OSVS can be changed by SETUP, so that NOANS85 and/or
  170.        OSVS are included in the COBOL.DIR created by SETUP. SETUP also
  171.        allows selection of SAA and the default linking libraries.
  172.  
  173.     o  VSC2 is now equivalent to VSC2(3). Previously VSC2 was equivalent to
  174.        VSC2(2).  The directives VSC2 OLDVSC2 have been replaced by VSC2(1).
  175.  
  176.     o  The directive OLDFILEIO has been replaced by the directive IDXFORMAT
  177.        which defines the type of indexed file required. IDXFORMAT"2" is
  178.        equivalent to OLDFILEIO.
  179.  
  180.     o  The verb, GOBACK, and the special register, RETURN-CODE are now part
  181.        of the standard Micro Focus(R) COBOL language and can be used without
  182.        needing VSC2 or OSVS. They are enabled by an MF level of 5 or above
  183.        (on by default) and can, therefore, be disabled by specifying MF(4).
  184.  
  185.     o  Comments following the PROGRAM-ID, which were allowed in previous
  186.        versions, are now not allowed by default. They can, however, be
  187.        enabled using the PROGID-COMMENT directive.
  188.  
  189.     o  For interfacing at the assembler level, note that the object segment
  190.        class names created by the COBOL compiler have changed in this
  191.        release.
  192.  
  193.     o  The default ALPHASTART value has been set to 1 to conform to the
  194.        ANSI'85 standard. In previous versions, this was set to 0. If you
  195.        have programs that use the ALPHABET clause of the SPECIAL-NAMES
  196.        paragraph, you may need to specify the directive ALPHASTART"0" to
  197.        maintain the required behavior.
  198.  
  199.     o  ACCEPT .. FROM DAY-OF-WEEK
  200.  
  201.        The statement
  202.  
  203.        ACCEPT data-item FROM DAY-OF-WEEK
  204.  
  205.        incorrectly returned the value 0 for Sunday. It now returns a value
  206.        of 7, as documented.
  207.  
  208.     o  COMP-5
  209.  
  210.        The default behavior of USAGE COMP-5 data items has been changed. In
  211.        previous versions of the product, COMP-5 was treated in a similar
  212.        fashion to signed COMP. It is now treated in a similar fashion to
  213.        COMP-X, allowing it to be a true binary numeric item using machine
  214.        specific byte ordering. This makes it a very efficient data type.
  215.  
  216.        If you use COMP-5 in existing programs, and depend on its sign
  217.        handling, you should compile your programs with the COMP-5"1"
  218.        directive.
  219.  
  220.     o  NEXT SENTENCE
  221.  
  222.        NEXT SENTENCE is handled differently in this version of the product.
  223.        In previous versions NEXT SENTENCE would cause control to move to the
  224.        end of the sentence (i.e. following the next period) or to the
  225.        statement following the next end-scope delimiter. In this version, it
  226.        will always go to the end of the sentence, as defined by the ANSI'85
  227.        standard.
  228.  
  229.        If your program uses NEXT SENTENCE and relies on the change of
  230.        control being to the appropriate end-scope delimiter, you can use the
  231.        MF"5" directive (but see above for V4.5). Alternatively, change the
  232.        NEXT SENTENCE phrases to CONTINUE, which will have the desired
  233.        effect.
  234.  
  235.     o  SYMBOLIC CHARACTERS clause
  236.  
  237.        The default SYMBSTART value has been set to 1 to conform to the
  238.        ANSI'85 standard. In previous versions, this was set to 0. If you
  239.        have programs that use the SYMBOLIC CHARACTERS clause of the
  240.        SPECIAL-NAMES paragraph, you may need to specify the directive
  241.        SYMBSTART"0" to maintain the required behavior.
  242.  
  243.     o  RECORDING MODE
  244.  
  245.        The RECORDING MODE phrase has been amended so that, when it is
  246.        explicitly included in an FD, it overrides the RECORD clause in all
  247.        cases, with RECORDING MODE F always causing a fixed format file to be
  248.        created, and RECORDING MODE V a variable format file.
  249.  
  250.        If you require the original behavior, whereby RECORDING MODE is
  251.        overridden by the RECORD clause, then use the MF"5" directive.
  252.  
  253.        Note that the RECMODE directive will not override the RECORD clause.
  254.  
  255.     o  REPORT-WRITER reserved words
  256.  
  257.        The RW directive has been made obsolete by incorporating the REPORT-
  258.        WRITER reserved words into the main dialects that support REPORT-
  259.        WRITER. If you have a program that uses some REPORT-WRITER reserved
  260.        words as data names, and used to be compiled with the NORW directive,
  261.        then you need to replace the NORW directive by USE(NORW). This will
  262.        cause the REPORT-WRITER reserved words to be removed from the
  263.        reserved word list, making them available for use as data names.
  264.  
  265.     o  INSPECT
  266.  
  267.        The handling of the LEADING phrase in INSPECT has been amended to
  268.        make it conform to a recent interpretation of the ANSI'85 standard.
  269.        For example, if data-stream contains "//AAA BBB OOO CCC", the
  270.        statement
  271.  
  272.        INSPECT data-stream TALLYING count-field
  273.            FOR LEADING "A" "\" " "O" "C"
  274.  
  275.        returned the value 5 in count-field in previous versions, but now
  276.        returns the value 2. This is because the remaining characters in the
  277.        LEADING phrase are considered to be ineligible once a match has been
  278.        found on one of the characters.
  279.  
  280.     o  COPY filenames
  281.  
  282.        Since this version now distinguishes between filenames with no
  283.        extension, but with a trailing period, and those without a trailing
  284.        period (treating the former as a specified extension of spaces),
  285.        some COPY statements in existing programs may appear to stop
  286.        working. If you want your copy files to have extension .CPY, but
  287.        code them in your program with no extension, then you must be sure
  288.        that the name does not have a trailing period. For example, change:
  289.  
  290.        COPY "mycopy.".
  291.  
  292.        to
  293.  
  294.        COPY "mycopy".
  295.  
  296.        Note that
  297.  
  298.        COPY mycopy.
  299.  
  300.        is treated as if it has no trailing period, and hence as in previous
  301.        versions.
  302.  
  303.  
  304.    Running
  305.  
  306.     o  A large number of the run-time system subprogram calls, provided in
  307.        earlier releases as call-by-number calls, have been replaced by named
  308.        calls. In addition to making the calls easier to remember and use,
  309.        the call-by-name calls can accept parameters defined in any part of
  310.        the data division.
  311.  
  312.        The replaced call-by-number calls are still supported in this
  313.        release, and documented below. However, we recommend that you
  314.        replace them with the equivalent call-by-name calls as appropriate.
  315.  
  316.     o  Record sizes
  317.  
  318.        In previous releases, the maximum and minimum record sizes specified
  319.        for a variable format file had to be the same in every program
  320.        referencing the file. This restriction has been removed, allowing
  321.        programs to specify record lengths different to those specified in
  322.        the program used to create the file. However, if an attempt is made
  323.        to write a record which is smaller than the smallest defined or
  324.        larger than the largest defined a run-time error, 9/044, will be
  325.        returned.
  326.  
  327.    Animating
  328.  
  329.     o  The method required to animate programs has changed in this release.
  330.        When a program is compiled for animation, using the ANIM directive,
  331.        intermediate code files are packaged into .OBJ files and .DLL on
  332.        OS/2). These .EXE/.DLL files can be animated in the usual way. The
  333.        pure intermediate code files (.INT) are no longer required for
  334.        animation.
  335.  
  336.     o  Since the new animation method incorporates a link step, any non-
  337.        COBOL .OBJ files can be linked in prior to animation. These will
  338.        operate correctly when encountered, though always in zoom mode. This
  339.        new technique makes IANIM and augmented INT obsolete, and these
  340.        facilities are not supported in this release.
  341.  
  342.        The same method allows OS/2 API function calls to be resolved prior
  343.        to animation, avoiding the need for the Install Function technology
  344.        of earlier releases.
  345.  
  346.     o  This release has the +F switch set by default. This will cause
  347.        illegal data in numeric fields to be trapped during animation, and
  348.        when running intermediate code .OBJ files (run-time system error
  349.        163). This may cause existing programs to fail where they previously
  350.        worked. However, trapping such instances will help prevent the
  351.        subsequently generated code from failing. All generated programs will
  352.        work as at present, always assuming that numeric fields contain
  353.        numeric data.
  354.  
  355.    Linking
  356.  
  357.     o  The linking library, OS2.LIB, should be used instead of DOSCALLS.LIB
  358.        when linking applications for use on OS/2(tm). OS2.LIB is supplied as
  359.        part of the utilities. (DOSCALLS.LIB can be used provided the
  360.        application is not a Presentation Manager application.)
  361.  
  362.     o  The /NOP option is no longer required when linking for use on OS/2.
  363.  
  364.     o  The default environment for applications created using this release
  365.        is the shared run-time environment.  This is particularly recommended
  366.        for use on OS/2, where a single copy of COBLIB.DLL can be shared by
  367.        any COBOL application (built to use COBLIB) running in any OS/2
  368.        session.
  369.  
  370.        To use this environment, the application is linked in the usual way,
  371.        using the libraries, COBLIB.LIB, and COBAPI.LIB or OS2.LIB depending
  372.        on DOS or OS/2. The EXE files produced will be much smaller since
  373.        little run-time system code is included directly. System programs,
  374.        such as EXTFH and ADIS, can be linked in with the application, or
  375.        linked as standalone sub-programs. Again, for OS/2, if linked as
  376.        standalone .DLL files, they can be shared by any number of COBOL
  377.        applications.
  378.  
  379.        Notes:
  380.     -  These system programs MUST be linked with COBLIB for use with
  381.        COBLIB applications.
  382.  
  383.     -  Modules linked with COBLIB cannot be mixed with modules linked
  384.        with LCOBOL. Hence, applications must be either all LCOBOL or all
  385.        COBLIB. However, COBLIB applications and LCOBOL applications can
  386.        be run on the same environment as long as they don't try to call
  387.        each other.
  388.  
  389.     o  The linking library (.LIB) files supplied with the system have been
  390.        split in a different way to enable reduced disk usage. They now
  391.        consist of LCOBOL.LIB, COBLIB.LIB, and COBAPI.LIB. The new LCOBOL
  392.        is equivalent to the old PCOBOL. The addition of COBAPI.LIB to
  393.        LCOBOL.LIB gives the old LCOBOL. (Users may like to recombine these
  394.        libraries using LIB if they wish to retain old working practices.)
  395.        For OS/2 operation, LCOBOL.LIB is used in combination with OS2.LIB
  396.        (which supersedes DOSCALLS.LIB).
  397.  
  398.        In the shared run-time system, the default, COBLIB.LIB, is equivalent
  399.        to the old PRCOBOL.LIB. Again, either COBAPI.LIB or OS2.LIB is used
  400.        in combination with COBLIB.LIB to complete the linking for DOS or
  401.        OS/2 respectively. Applications linked with these libraries will be
  402.        very much smaller, benefiting from the shared run-time system support
  403.        in COBLIB.DLE and COBLIB.DLL. (Note that the application itself can
  404.        be bound so that it will run on both DOS and OS/2 provided both
  405.        shared run-time system files are present.)
  406.  
  407.     o  If you select a linking environment other than the built-in default,
  408.        SETUP will create a default LINKLIB in your COBOL.DIR. The default,
  409.        and equivalent of earlier releases, is LINKLIB(LCOBOL+COBAPI). If
  410.        you normally use the system on OS/2, use LINKLIB(LCOBOL+OS2). With
  411.        this release, the default is to use the COBLIB shared run-time system,
  412.        requiring LINKLIB(COBLIB+COBAPI) on DOS, and LINKLIB(COBLIB+OS2) on
  413.        OS/2.
  414.  
  415.        When the default has been set in this way, you can still link for use
  416.        in other environments by specifying the relevant libraries on the
  417.        LINK command line. However, you should use the /NOD directive when
  418.        doing so, otherwise link-time errors may occur.
  419.  
  420.     o  The file handler for indexed files, IXSIO, has been replaced by the
  421.        external file handler, EXTFH. This can be linked in exactly the same
  422.        way as IXSIO in earlier releases, either linked in with the
  423.        application or linked as a standalone system program.
  424.  
  425.        Programs referencing ANSI'85 EXTERNAL files and normal indexed files
  426.        now only use EXTFH rather than two separate file handlers.
  427.  
  428.    Compatibility issues
  429.  
  430.    Compiling
  431.  
  432.     o  If you compile your programs on OS/2 using batch files, you will need
  433.        to alter the batch files to compile using the command COBOL instead
  434.        of PCOBOL. Alternatively, you can copy COBOL.EXE to PCOBOL.EXE in the
  435.        COBOL system directory.
  436.  
  437.     o  Programs previously compiled without the ANS85 directive, if
  438.        recompiled under this default system, may not work correctly. The
  439.        most likely cause is that the new system has ANS85 on by default.
  440.        This causes all file status codes to be ANS85 not ANS74 statuses.
  441.        The problem can be avoided by using the NOANS85 directive when
  442.        compiling any program that is designed to work with ANS74 file
  443.        statuses.
  444.  
  445.    Animating
  446.  
  447.     o  The compiler dictionary structure has been amended. This means that
  448.        IDY files created by earlier releases will not be compatible with
  449.        ANIMATOR in this system. Hence, you should recompile, with this
  450.        release of the compiler, any program you wish to animate.
  451.  
  452.    Linking
  453.  
  454.     o  .OBJ files created by this release are not compatible with .OBJ files
  455.        created by earlier releases. Hence, if you need to rebuild an
  456.        application where one of the OBJs has been created using this
  457.        release, you must recompile all the programs with this release of the
  458.        compiler before linking.
  459.  
  460.    Running
  461.  
  462.     o  In previous versions of this software, an error is given when an
  463.        indexed file is opened if the record lengths of the file do not
  464.        exactly match those given in the FD. This has been changed so the
  465.        error is only given if an attempt is made to WRITE a record larger
  466.        than the maximum or smaller than the minimum.
  467.  
  468.     o  The Report Writer module has been changed so that it is compatible
  469.        with IBM(R) OS/VS COBOL when the OSVS directive is used. This is the
  470.        ANSI'68 COBOL standard. In previous versions, the default with OSVS
  471.        was ANSI'74 COBOL standard report writer. You may have report writer
  472.        programs using OSVS features, but requiring ANSI'74 report writer
  473.        compatibility. This mix is no longer possible, and you will either
  474.        need to remove the OSVS features (try VSC2), or accept ANSI'68 COBOL
  475.        report writer standard.
  476.  
  477.  
  478.    Documentation
  479.    -------------
  480.    Call-by-number subprogram calls.
  481.  
  482.    Many of the COBOL system library routines provided in earlier releases as
  483.    call-by-number have been replaced by call-by-name routines.    We recommend
  484.    that you replace all call-by-number routines by their equivalent call-by-
  485.    name routines. See your Operating Guide chapter, COBOL System Library
  486.    Routines, for details of which call-by-name routines replace these.
  487.  
  488.    To allow you to maintain existing applications, the documentation for the
  489.    replaced call-by-number routines follows:
  490.  
  491.  
  492.    PUT A CHARACTER TO THE SCREEN
  493.  
  494.        CALL X"82" USING character.
  495.  
  496.    where:
  497.  
  498.        character is a PIC X field containing the character to be put on the
  499.        screen in the current cursor position.
  500.  
  501.    The cursor is then advanced one position to the right, or onto the next
  502.    line if it is in the rightmost position, or off the screen if it is in
  503.    the bottom right-hand corner.
  504.  
  505.  
  506.    READ A CHARACTER FROM THE KEYBOARD
  507.  
  508.        CALL X"83" USING character.
  509.  
  510.    where:
  511.  
  512.        character is a PIC X field to contain the character returned.
  513.  
  514.    Notes:  1.  A call on this subprogram also causes the function key table
  515.            to be checked and the result byte updated.
  516.  
  517.        2.  If the character returned from this subprogram is a carriage-
  518.            return character (hex 0D), then the character read from the
  519.            keyboard has been recognized by the function key table, and
  520.            the result byte of that table should be checked to determine
  521.            the actual character which has been pressed.
  522.  
  523.        3.  If the character read is a 2-byte character (such as a
  524.            function key) and it was not matched in the function key
  525.            table, then both bytes are returned to this subprogram.    The
  526.            first call returns a null byte (hex 00) and the next call
  527.            returns the scan code (refer to the IBM Personal Computer
  528.            Technical Reference Manual for details of scan codes).
  529.  
  530.        4.  Break can be used to interrupt a running program.  However,
  531.            if the program was in the middle of a call to this subprogram
  532.            at the time, nothing happens until the call on this
  533.            subprogram is satisfied by reading another character from the
  534.            keyboard.  Break is not returned by this routine.
  535.  
  536.  
  537.    SCREEN INPUT AND OUTPUT
  538.  
  539.        CALL X"B7" USING function, parameter, buffer
  540.  
  541.    where:
  542.  
  543.        function is a PIC 99 COMP-X data item and contains a value:
  544.  
  545.        0   to read characters from the screen
  546.        1   to write characters to the screen
  547.        2   to read attributes from the screen
  548.        3   to write attributes to the screen
  549.        4   to clear characters from the screen
  550.        5   to clear attributes from the screen
  551.  
  552.  
  553.        parameter is a group item consisting of three data items:
  554.  
  555.     o  a PIC 9(4) COMP-X field  showing the length of the data to be
  556.        read or written.
  557.  
  558.     o  a PIC 9(4) COMP-X field giving the start position on the screen.
  559.        Top left is position 1, 81 is the start of the next line, etc.
  560.  
  561.     o  a PIC 9(4) COMP-X field showing the start position in the buffer.
  562.        The starting  buffer position is 1.
  563.  
  564.        buffer is the COBOL data area. It is a PIC X(n) field and may be as
  565.        large or small as you require to write your data.
  566.  
  567.    An entire screen of text or attributes is 2000 bytes.  No check is made
  568.    that any data to be read will fit into your buffer.    Therefore, if the
  569.    length specified is greater than the length available in your buffer, any
  570.    subsequent data will be corrupted.  Buffer is not used with a function of
  571.    4 or 5, but this parameter must still be supplied.
  572.  
  573.    Note: When writing or clearing characters, the User attribute is imposed
  574.      on the character position, unless the User attribute flag is set
  575.      off, in which case the current Screen attribute for that character
  576.      position is used.
  577.  
  578.  
  579.    SCREEN CELL INPUT AND OUTPUT
  580.  
  581.        CALL X"B8" using FUNCTION PARAMS CHARBUFF ATTRBUFF
  582.  
  583.    where parameters are:
  584.  
  585.        01 FUNCTION     PIC 9(2) COMP-X
  586.  
  587.         =   0 to read screen to character and attribute buffers
  588.         =   1 to write screen from character and attribute buffers
  589.         =   2 to swap screen with character and attribute buffers
  590.  
  591.        01 PARAMS
  592.        03       P-LENGTH       PIC 9(4) COMP-X.
  593.        03       P-SOFFSET       PIC 9(4) COMP-X.
  594.        03       P-BOFFSET       PIC 9(4) COMP-X.
  595.  
  596.         P-LENGTH   =       number of screen cells to read/write/swap
  597.         P-SOFFSET  =       screen offset (1 = top left)
  598.         P-BOFFSET  =       buffer offset (1 = start of buffer)
  599.  
  600.        01 CHARBUFF
  601.        03       CHARS PIC X OCCURS n TIMES
  602.  
  603.                =       an array of character bytes
  604.  
  605.        01 ATTRBUFF
  606.        03       ATTRS PIC X OCCURS n TIMES
  607.  
  608.                =       an array of associated attribute bytes
  609.  
  610.  
  611.    TEST CONSOLE STATUS
  612.  
  613.        CALL X"D9" USING parameter.
  614.  
  615.    where:
  616.  
  617.     parameter is a PIC 99 COMP-X field and shows the status of the
  618.           console:
  619.  
  620.        zero        there is no character waiting to be read from the
  621.                keyboard
  622.  
  623.        non-zero    there is a character waiting to be read from the
  624.                keyboard
  625.  
  626.    When a program is being animated in other than zoom mode, this function
  627.    always returns a zero (i.e., it never detects a character), because
  628.    ANIMATOR always looks for characters.  However, the function operates
  629.    correctly when zoom mode is used.
  630.  
  631.  
  632.    GET SCREEN SIZE
  633.  
  634.        CALL X"E3" USING no-lines, no-cols.
  635.  
  636.    where:
  637.  
  638.        no-lines is a PIC 99 COMP-X field and shows the number of lines on
  639.        the screen.
  640.  
  641.        no-cols is a PIC 99 COMP-X field and shows the number of columns on
  642.        the screen.
  643.  
  644.  
  645.    CLEAR SCREEN
  646.  
  647.        CALL X"E4".
  648.  
  649.    This routine clears the entire user screen.
  650.  
  651.  
  652.    MOVE THE CURSOR TO A DEFINED POSITION
  653.  
  654.        CALL X"E6" USING result, parameter.
  655.  
  656.    where:
  657.  
  658.        result is a PIC 99 COMP-X field.  It is not used.
  659.  
  660.        parameter is a group item consisting of two data items:
  661.  
  662.     o  a PIC 99 COMP-X field specifying the row number for the cursor to
  663.        be moved to; in the range 0 to 24.
  664.  
  665.     o  a PIC 99 COMP-X field giving the column number for the cursor to
  666.        be moved to; in the range 0 to 79.
  667.  
  668.  
  669.   ==========================================================================
  670.   Copyright (C) 1991 Microsoft Corporation
  671.   Copyright (C) 1991 Micro Focus Ltd
  672.