Main Page | Class List | File List | Class Members | File Members | Related Pages

gi_protocol_ver.h

00001 /* 00002 * $Id: gi_protocol_ver.h.in,v 1.1.2.1 2004/04/10 05:36:04 jasta Exp $ 00003 * 00004 * -*- C -*- 00005 * 00006 * Copyright (C) 2001-2003 giFT project (gift.sourceforge.net) 00007 * 00008 * This program is free software; you can redistribute it and/or modify it 00009 * under the terms of the GNU General Public License as published by the 00010 * Free Software Foundation; either version 2, or (at your option) any 00011 * later version. 00012 * 00013 * This program is distributed in the hope that it will be useful, but 00014 * WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * General Public License for more details. 00017 */ 00018 00019 #ifndef __GI_PROTOCOL_VER_H 00020 #define __GI_PROTOCOL_VER_H 00021 00022 /*****************************************************************************/ 00023 00024 /* plugin developers will want to use this to describe the version they are 00025 * known to be compatible with */ 00026 #define LIBGIFTPROTO_MKVERSION(major,minor,micro) \ 00027 ((((major) & 0xff) << 24) | \ 00028 (((minor) & 0xff) << 16) | \ 00029 (((micro) & 0xff) << 8)) 00030 00031 /* autoconf will fill this in for us... */ 00032 #ifndef _MSC_VER 00033 #define LIBGIFTPROTO_VERSION \ 00034 LIBGIFTPROTO_MKVERSION(0, \ 00035 12, \ 00036 0) 00037 #else /* _MSC_VER */ 00038 #include "giftconfig_win32.h" 00039 #define LIBGIFTPROTO_VERSION \ 00040 LIBGIFTPROTO_MKVERSION(LIBGIFTPROTO_MAJOR, \ 00041 LIBGIFTPROTO_MINOR, \ 00042 LIBGIFTPROTO_MICRO) 00043 #endif /* !_MSC_VER */ 00044 00045 /*****************************************************************************/ 00046 00047 #endif /* __GI_PROTOCOL_VER_H */

Generated on Sun Aug 22 08:11:13 2004 by doxygen 1.3.7