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

SQL Server

开发平台:

Unix_Linux

  1. /*
  2.  *  typeif.h  -  types, shared by interpretator and engine interface library
  3.  *               of GNU SQL server
  4.  *
  5.  *  This file is a part of GNU SQL Server
  6.  *
  7.  *  Copyright (c) 1996, 1997, Free Software Foundation, Inc
  8.  *  Developed at the Institute of System Programming
  9.  *  This file is written by Olga Dmitrieva
  10.  *
  11.  *  This program is free software; you can redistribute it and/or modify
  12.  *  it under the terms of the GNU General Public License as published by
  13.  *  the Free Software Foundation; either version 2 of the License, or
  14.  *  (at your option) any later version.
  15.  *
  16.  *  This program is distributed in the hope that it will be useful,
  17.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  *  GNU General Public License for more details.
  20.  *
  21.  *  You should have received a copy of the GNU General Public License
  22.  *  along with this program; if not, write to the Free Software
  23.  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  24.  *
  25.  *  Contacts: gss@ispras.ru
  26.  *
  27.  */
  28. /* $Id: typeif.h,v 1.245 1997/03/31 03:46:38 kml Exp $ */
  29. #ifndef __TYPEIF__
  30. #define __TYPEIF__
  31. #include "pupsi.h"
  32. #define MAX_STR_LNG BD_PAGESIZE-256
  33. #define MAX_USER_NAME_LNG 20
  34. typedef struct 
  35. {
  36.   unsigned f4:4;
  37.   unsigned f3:4;
  38.   unsigned f2:4;
  39.   unsigned f1:4;
  40. }    Scale    ;
  41. #include "sctp.h"
  42. #define ENDSC4  0xF0     /* ENDSC<<4 */
  43. #define ANY4    0xD0     /* ANY<<4 */
  44. /*
  45.   Selection condition has to include one element of scale
  46.   for every field; if condition absence for some field
  47.   then corresponding element of scale is equal ANY
  48.   
  49. struct Cond
  50. {
  51.   Scale  scale[n+1]; * array of four bit fields            *
  52.                      * determining the compare operations  *
  53.   char   values[ ] ; * constant's values        *
  54. }
  55. */
  56. typedef char *cond_buf_t; /* Actually pointer to buffer of conditions written
  57.                              in the format decsribed above */
  58. typedef  void  **Colval;
  59. #endif