home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / clarion / ovlay.zip / OVLAY2.CPY < prev    next >
Text File  |  1990-04-17  |  1KB  |  25 lines

  1. ! Clarion include file for data definiton of overlay stack
  2. !
  3. ! Place the statement INCLUDE('OVLAY2.CPY') in your global data area
  4.  
  5. PT_RECS             BYTE               ! Counter of records on stack
  6. PMSG                STRING(80)          ! Global message area available to
  7.                                         ! called procedure
  8.  
  9. CR_LF           EQUATE('<010><013>')
  10.  
  11. PAR_TABLE    TABLE
  12. PAR_BLOCK       GROUP,PRE(PAR)
  13. EX_PROC                 BYTE            ! Code of procedure being executed
  14. CALL_PROC               BYTE            ! Code of calling procedure to have
  15.                                         ! control returned to
  16. CALL_STAT               BYTE            ! Used internally - indicates that
  17.                                         ! procedure has been called, but
  18.                                         ! is awaiting return control
  19. PASS_MSG                STRING(80)      ! Message that can be retreived by
  20.                                         ! called function.  Use to pass
  21.                                         ! parameters
  22.              .  .
  23.  
  24.  
  25.         INCLUDE('PROCDEFS.INC')