sql_decl.h
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:2k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  sql_decl.h  - GNU SQL compiler communication area
  3.  *
  4.  *  This file is a part of GNU SQL Server
  5.  *
  6.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  7.  *  Developed at the Institute of System Programming
  8.  *  This file is written by Michael Kimelman
  9.  * 
  10.  *  This program is free software; you can redistribute it and/or modify
  11.  *  it under the terms of the GNU General Public License as published by
  12.  *  the Free Software Foundation; either version 2 of the License, or
  13.  *  (at your option) any later version.
  14.  *
  15.  *  This program is distributed in the hope that it will be useful,
  16.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  *  GNU General Public License for more details.
  19.  *
  20.  *  You should have received a copy of the GNU General Public License
  21.  *  along with this program; if not, write to the Free Software
  22.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23.  *
  24.  *  Contacts: gss@ispras.ru
  25.  */
  26. /* $Id: sql_decl.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  27.                 
  28. #ifndef __SQL_DECL_H__
  29. #define __SQL_DECL_H__
  30. #include "setup_os.h"
  31. #include <errno.h>
  32. #include "trl.h"
  33. extern VCBREF    local_vcb       ;
  34. #define LOCAL_VCB_ROOT   local_vcb
  35. extern char *progname;
  36. extern i4_t   errors;
  37. extern i4_t   under_dbg;
  38. extern char *sql_prg;
  39. extern i4_t   file_pos;
  40. extern FILE *STDERR;
  41. extern FILE *STDOUT;
  42. extern FILE *sc_file;
  43. /* options declaration */
  44. typedef void (*Opt_processor) __P((i4_t *state,char *tail));
  45. typedef i4_t  (*Comp_pass) __P((void));
  46. typedef void (*Dumper) __P((FILE *f));
  47. /* declarations for type compatibility */
  48. #define DEF_OPTION(o_nm,var_nm,is_settled) 
  49.      extern i4_t var_nm;
  50. #define DEF_OPTION1(o_hd,o_proc) 
  51.      void o_proc __P((i4_t *flag,char *tail));
  52.      extern i4_t o_proc##_state;
  53. #define DEF_PASS(name,title,id,proc,st_id,dmp,skip,ext,dumper) 
  54.      i4_t    proc __P((void));
  55.      void   dumper __P((FILE *f));
  56. #include "options.def"
  57. extern struct compiler_pass_descr 
  58. {
  59.   char     *sname,
  60.            *sdescr,
  61.             atr;
  62.   Comp_pass pass;
  63.   i4_t       skip,
  64.             dump;
  65.   char     *dumpext;
  66.   FILE     *dmp_file;
  67.   Dumper    dumper;
  68.   i4_t       stage;
  69. } compiler_passes[];
  70. extern struct sql_options_info
  71. {
  72.   char          *name;
  73.   i4_t           *ptr_to_var;
  74.   Opt_processor  proc;  
  75. } sql_options[];
  76. void read_options __P((i4_t argc,char *argv[]));
  77. void dump_modes __P((i4_t *p,char *s));
  78. void skip_modes __P((i4_t *p,char *s));
  79. #endif