X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fzebraver.h;h=e6a749a04ccd2a1de0b72c40d92e1a6970467e75;hb=da1267b22edd9e3be497ce84b9734a0c870defdd;hp=f51ebe194e8e583248063f3592a27fba0b094fa7;hpb=0cf23341b340ed13e308726b6ab3625299759b49;p=idzebra-moved-to-github.git diff --git a/include/zebraver.h b/include/zebraver.h index f51ebe1..e6a749a 100644 --- a/include/zebraver.h +++ b/include/zebraver.h @@ -1,49 +1,47 @@ -/* - * Copyright (C) 1994-1998, Index Data I/S - * All rights reserved. - * Sebastian Hammer, Adam Dickmeiss - * - * $Log: zebraver.h,v $ - * Revision 1.11 1998-01-29 13:33:04 adam - * 1.0b1. - * - * Revision 1.10 1997/02/12 20:45:21 adam - * Internal release. - * - * Revision 1.9 1996/11/08 11:08:03 adam - * New internal release. - * - * Revision 1.8 1996/10/18 12:38:22 adam - * New internal release. - * - * Revision 1.7 1996/06/06 13:30:12 quinn - * Work - * - * Revision 1.6 1996/05/16 15:31:07 quinn - * a7 - * - * Revision 1.5 1996/04/26 09:59:47 adam - * Added ZEBRADATE; date of this file. - * - * Revision 1.4 1996/04/24 13:36:22 quinn - * a6 - * - * Revision 1.3 1996/01/11 10:15:44 quinn - * Alfa 4 release. - * - * Revision 1.2 1995/12/06 16:05:50 adam - * New version. - * - * Revision 1.1 1995/12/05 11:24:51 adam - * New version. - * - */ +/* $Id: zebraver.h,v 1.40 2004-08-06 12:28:22 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.0b1" -#endif -#ifndef ZEBRADATE -#define ZEBRADATE "$Date: 1998-01-29 13:33:04 $" +#define ZEBRAVER "1.4.0" + +#define ZEBRADATE "$Date: 2004-08-06 12:28:22 $" + +#ifdef __GNUC__ +typedef long long int zint; +#define ZINT_FORMAT "%lld" +#define ZINT_FORMAT0 "lld" +#else +#ifdef WIN32 +typedef __int64 zint; +#define ZINT_FORMAT "%I64d" +#define ZINT_FORMAT0 "I64d" +#else +typedef long zint; +#define ZINT_FORMAT "%ld" +#define ZINT_FORMAT0 "ld" +#endif #endif +typedef zint SYSNO; + +#endif