47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
|
/*
|
||
|
* LibXDiff by Davide Libenzi ( File Differential Library )
|
||
|
* Copyright (C) 2003 Davide Libenzi
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library 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
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*
|
||
|
* Davide Libenzi <davidel@xmailserver.org>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#if !defined(WINCONFIG_H)
|
||
|
#define WINCONFIG_H
|
||
|
|
||
|
#if !defined(PACKAGE_VERSION)
|
||
|
#define PACKAGE_VERSION "0.23"
|
||
|
#endif /* #if !defined(PACKAGE_VERSION) */
|
||
|
|
||
|
#define HAVE_STDIO_H 1
|
||
|
#define HAVE_STDLIB_H 1
|
||
|
#define HAVE_STRING_H 1
|
||
|
#define HAVE_LIMITS_H 1
|
||
|
|
||
|
#define HAVE_MEMCHR 1
|
||
|
#define HAVE_MEMCMP 1
|
||
|
#define HAVE_MEMCPY 1
|
||
|
#define HAVE_MEMSET 1
|
||
|
#define HAVE_STRLEN 1
|
||
|
|
||
|
#define XRABPLY_TYPE64 __int64
|
||
|
#define XV64(v) ((xply_word) v ## UI64)
|
||
|
|
||
|
|
||
|
#endif /* WINCONFIG_H */
|
||
|
|