mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
72 lines
1.7 KiB
C
72 lines
1.7 KiB
C
/*
|
|
* ADF Library. (C) 1997-2002 Laurent Clevy
|
|
*
|
|
* adf_defs.h
|
|
*
|
|
* $Id$
|
|
*
|
|
*
|
|
* This file is part of ADFLib.
|
|
*
|
|
* ADFLib 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 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* ADFLib 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 Foobar; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef _ADF_DEFS_H
|
|
#define _ADF_DEFS_H 1
|
|
|
|
#define ADFLIB_VERSION "0.7.11a"
|
|
#define ADFLIB_DATE "January 20th, 2007"
|
|
|
|
#define SECTNUM int32_t
|
|
#define RETCODE int32_t
|
|
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
|
|
#include <stdint.h>
|
|
#define ULONG uint32_t
|
|
#define USHORT uint16_t
|
|
#define UCHAR uint8_t
|
|
#define BOOL int
|
|
|
|
|
|
/* defines max and min */
|
|
|
|
#ifndef max
|
|
#define max(a,b) (a)>(b) ? (a) : (b)
|
|
#endif
|
|
#ifndef min
|
|
#define min(a,b) (a)<(b) ? (a) : (b)
|
|
#endif
|
|
|
|
|
|
/* (*byte) to (*short) and (*byte) to (*long) conversion */
|
|
|
|
#define Short(p) ((p)[0]<<8 | (p)[1])
|
|
#define Long(p) (Short(p)<<16 | Short(p+2))
|
|
|
|
|
|
/* swap short and swap long macros for little endian machines */
|
|
|
|
#define swapShort(p) ((p)[0]<<8 | (p)[1])
|
|
#define swapLong(p) (swapShort(p)<<16 | swapShort(p+2))
|
|
|
|
|
|
|
|
#endif /* _ADF_DEFS_H */
|
|
/*##########################################################################*/
|