php-src/Zend/zend_config.w32.h

89 lines
2.6 KiB
C
Raw Normal View History

1999-07-16 14:58:16 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2018-01-02 04:57:58 +00:00
| Copyright (c) 1998-2018 Zend Technologies Ltd. (http://www.zend.com) |
1999-07-16 14:58:16 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:16:21 +00:00
| This source file is subject to version 2.00 of the Zend license, |
2006-02-21 08:00:39 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2001-12-11 15:16:21 +00:00
| http://www.zend.com/license/2_00.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. |
+----------------------------------------------------------------------+
2018-11-01 16:35:32 +00:00
| Authors: Andi Gutmans <andi@php.net> |
| Zeev Suraski <zeev@php.net> |
1999-07-16 14:58:16 +00:00
+----------------------------------------------------------------------+
*/
#ifndef ZEND_CONFIG_W32_H
#define ZEND_CONFIG_W32_H
1999-04-07 18:10:10 +00:00
#include <../main/config.w32.h>
2002-08-07 14:47:42 +00:00
#define _CRTDBG_MAP_ALLOC
#include <malloc.h>
#include <stdlib.h>
#include <crtdbg.h>
1999-04-07 18:10:10 +00:00
#include <string.h>
2003-02-17 13:20:41 +00:00
#ifndef ZEND_INCLUDE_FULL_WINDOWS_HEADERS
#define WIN32_LEAN_AND_MEAN
#endif
#include <winsock2.h>
1999-04-07 18:10:10 +00:00
#include <windows.h>
2003-02-17 13:20:41 +00:00
2000-03-02 02:39:21 +00:00
#include <float.h>
1999-04-07 18:10:10 +00:00
typedef unsigned long ulong;
typedef unsigned int uint;
#define HAVE_STDIOSTR_H 1
1999-09-29 21:46:37 +00:00
#define HAVE_CLASS_ISTDIOSTREAM
#define istdiostream stdiostream
#if _MSC_VER < 1900
2002-04-25 08:59:36 +00:00
#define snprintf _snprintf
#endif
2015-08-29 18:12:31 +00:00
#define strcasecmp(s1, s2) _stricmp(s1, s2)
#define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n)
2003-03-10 01:12:22 +00:00
#define zend_isinf(a) ((_fpclass(a) == _FPCLASS_PINF) || (_fpclass(a) == _FPCLASS_NINF))
#define zend_finite(x) _finite(x)
#define zend_isnan(x) _isnan(x)
1999-07-09 11:19:38 +00:00
1999-04-07 18:10:10 +00:00
#define zend_sprintf sprintf
#ifndef __cplusplus
/* 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
# undef inline
1999-12-31 15:41:18 +00:00
# define inline __forceinline
#endif
1999-12-31 15:41:18 +00:00
#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
2000-04-01 16:23:13 +00:00
#define ZEND_DLEXPORT __declspec(dllexport)
2002-04-22 09:33:25 +00:00
#define ZEND_DLIMPORT __declspec(dllimport)
2000-04-01 16:23:13 +00:00
#endif /* ZEND_CONFIG_W32_H */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
2017-07-04 16:12:45 +00:00
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
*/