home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pascal.zip / symtable / symt_ids.h < prev    next >
Text File  |  1995-10-29  |  726b  |  36 lines

  1. /*
  2.  *        C . A . P .   S Y M B O L   T A B L E
  3.  *
  4.  *        G L O B A L   I N C L U D E   F I L E ,   I D E N T I F I E R S
  5.  *
  6.  *        Stéphane Charette @ C.A.P. Services
  7.  *
  8.  *        Last modified:  Stéphane Charette, 1995 October 29
  9.  *
  10.  *****************************************************************************
  11.  *
  12.  *        Project:    BILL
  13.  *        Group:    symbol table
  14.  *        File:        symtable\symt_ids.h
  15.  *
  16.  *        This file contains all of the ids in the symbol tables used with the
  17.  *        interpreter BILL.
  18.  */
  19.  
  20.  
  21.  
  22. #ifndef _SYMTABLE_IDS_H_GLOBAL
  23.  
  24.     #define _SYMTABLE_IDS_H_GLOBAL
  25.  
  26.     /*
  27.      *        Defines
  28.      */
  29.         #define SYM_NO_ID                -1    // symbol name not recognized
  30.         #define SYM_DUPLICATE_ID    -2    // symbol already defined
  31.  
  32.  
  33.  
  34. #endif
  35.  
  36.