php-src/Zend/zend_config.w32.h

68 lines
2.0 KiB
C
Raw Normal View History

1999-07-16 14:58:16 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) 1998, 1999 Andi Gutmans, Zeev Suraski |
+----------------------------------------------------------------------+
1999-07-19 20:02:12 +00:00
| This source file is subject to version 0.91 of the Zend license, |
1999-07-16 14:58:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
1999-07-19 20:02:12 +00:00
| http://www.zend.com/license/0_91.txt. |
1999-07-16 14:58:16 +00:00
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
1999-04-07 18:10:10 +00:00
#ifndef _ZEND_CONFIG_W32_H
#define _ZEND_CONFIG_W32_H
#include <string.h>
#include <windows.h>
typedef unsigned long ulong;
typedef unsigned int uint;
#define HAVE_ALLOCA 1
1999-09-06 20:33:40 +00:00
#define HAVE_LIMITS_H 1
1999-04-07 18:10:10 +00:00
#include <malloc.h>
#undef HAVE_KILL
#define HAVE_GETPID 1
1999-09-06 20:43:35 +00:00
/* #define HAVE_ALLOCA_H 1 */
#define HAVE_MEMCPY 1
#define HAVE_STRDUP 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_STDIOSTR_H 1
1999-09-29 21:46:37 +00:00
#define HAVE_CLASS_ISTDIOSTREAM
#define istdiostream stdiostream
1999-07-09 11:19:38 +00:00
1999-04-07 18:10:10 +00:00
#ifdef inline
#undef inline
#endif
#define zend_sprintf sprintf
/* This will cause the compilation process to be MUCH longer, but will generate
* a much quicker PHP binary
*/
2000-02-11 16:28:50 +00:00
#ifdef ZEND_WIN32_FORCE_INLINE
1999-12-31 15:41:18 +00:00
# define inline __forceinline
#else
# define inline
#endif
1999-04-07 18:10:10 +00:00
#ifdef LIBZEND_EXPORTS
1999-04-07 18:10:10 +00:00
# define ZEND_API __declspec(dllexport)
#else
# define ZEND_API __declspec(dllimport)
#endif
1999-07-09 11:19:38 +00:00
#endif /* _ZEND_CONFIG_W32_H */