ifwords.h
上传用户:aidanglao
上传日期:2007-01-07
资源大小:69k
文件大小:1k
源码类别:

Oracle数据库

开发平台:

Unix_Linux

  1. /*  ifwords.h - defines types for EXPR Parser
  2. /*
  3. /* Copyright (c) 1995-1999 Applied Information Technologies, Inc.
  4. /* All Rights Reserved.
  5. /*  
  6. /* Distributed uder the GNU General Public License which was included in
  7. /* the file named "LICENSE" in the package that you recieved.
  8. /* If not, write to:
  9. /* The Free Software Foundation, Inc.,
  10. /* 675 Mass Ave, Cambridge, MA 02139, USA.
  11.  */
  12. #ifndef _IFWORDS_H_
  13. #define _IFWORDS_H_
  14. #include "scalar.h"
  15. /*
  16. /* Reserved words
  17.  */
  18. #define FUNC  0
  19. #define TOKEN 1
  20. typedef struct {
  21.     char *pName;
  22.     int   iToken
  23.  ,iType;
  24.     PFPS_t pScalarFunc;
  25. } Reserved_t;
  26. extern Reserved_t gaReservedWordTable [ ] ;
  27. #endif /* _IFWORDS_H_ */