X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fzebraver.h;h=9f492084c8a62c013a9b0b05ec5774676b8401b8;hb=714fc16a13c620527ebc11d254ba4e7b299a25f0;hp=3baa5956828c54fa66281d03038c27885c51efee;hpb=77686142af94172d1887190ebd47aeb53f704057;p=idzebra-moved-to-github.git diff --git a/include/zebraver.h b/include/zebraver.h index 3baa595..9f49208 100644 --- a/include/zebraver.h +++ b/include/zebraver.h @@ -1,14 +1,48 @@ -/* - * Copyright (C) 1994-2001, Index Data - * All rights reserved. - * - * $Id: zebraver.h,v 1.18 2001-10-15 19:53:43 adam Exp $ - */ +/* $Id: zebraver.h,v 1.39 2004-08-04 08:35:23 adam Exp $ + Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 + Index Data Aps + +This file is part of the Zebra server. + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Zebra; see the file LICENSE.zebra. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. +*/ #ifndef ZEBRAVER -#define ZEBRAVER "1.1" + +#define ZEBRAVER "1.4.0" + +#define ZEBRADATE "$Date: 2004-08-04 08:35:23 $" + +#ifdef __GNUC__ +typedef long long int zint; +#define ZINT_FORMAT "%lld" +#define ZINT_FORMAT0 "lld" +#else +#ifdef WIN32 +typedef __int64 zint; +#define ZINT_FORMAT "%lld" +#define ZINT_FORMAT0 "lld" +#error must define ZINT_FORMAT on Windows +#else +typedef long zint; +#define ZINT_FORMAT "%ld" +#define ZINT_FORMAT0 "ld" #endif +#endif + +typedef zint SYSNO; -#ifndef ZEBRADATE -#define ZEBRADATE "$Date: 2001-10-15 19:53:43 $" #endif