php-src/Zend/zend_config.w32.h

101 lines
3.0 KiB
C
Raw Normal View History

1999-07-16 22:58:16 +08:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
2008-12-31 19:15:49 +08:00
| Copyright (c) 1998-2009 Zend Technologies Ltd. (http://www.zend.com) |
1999-07-16 22:58:16 +08:00
+----------------------------------------------------------------------+
2001-12-11 23:16:21 +08:00
| This source file is subject to version 2.00 of the Zend license, |
| 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 23:16:21 +08:00
| http://www.zend.com/license/2_00.txt. |
1999-07-16 22:58:16 +08: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> |
2000-09-07 02:38:36 +08:00
| Zeev Suraski <zeev@zend.com> |
1999-07-16 22:58:16 +08:00
+----------------------------------------------------------------------+
*/
/* $Id$ */
1999-07-16 22:58:16 +08:00
#ifndef ZEND_CONFIG_W32_H
#define ZEND_CONFIG_W32_H
1999-04-08 02:10:10 +08:00
#include <../main/config.w32.h>
2002-08-07 22:47:42 +08:00
#define _CRTDBG_MAP_ALLOC
#include <malloc.h>
#include <stdlib.h>
#include <crtdbg.h>
1999-04-08 02:10:10 +08:00
#include <string.h>
2003-02-17 21:20:41 +08:00
#ifndef ZEND_INCLUDE_FULL_WINDOWS_HEADERS
#define WIN32_LEAN_AND_MEAN
#endif
#include <winsock2.h>
1999-04-08 02:10:10 +08:00
#include <windows.h>
2003-02-17 21:20:41 +08:00
2000-03-02 10:39:21 +08:00
#include <float.h>
1999-04-08 02:10:10 +08:00
typedef unsigned long ulong;
typedef unsigned int uint;
#define HAVE_STDIOSTR_H 1
1999-09-30 05:46:37 +08:00
#define HAVE_CLASS_ISTDIOSTREAM
#define istdiostream stdiostream
2002-04-25 16:59:36 +08:00
#define snprintf _snprintf
2008-07-18 01:48:50 +08:00
#if _MSC_VER < 1500
#define vsnprintf _vsnprintf
2008-07-18 01:48:50 +08:00
#endif
2003-02-07 17:39:29 +08:00
#define strcasecmp(s1, s2) stricmp(s1, s2)
#define strncasecmp(s1, s2, n) strnicmp(s1, s2, n)
2003-03-10 09:12:22 +08: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 19:19:38 +08:00
1999-04-08 02:10:10 +08:00
#define zend_sprintf sprintf
/* This will cause the compilation process to be MUCH longer, but will generate
* a much quicker PHP binary
*/
2000-09-07 02:42:06 +08:00
#undef inline
2000-02-12 00:28:50 +08:00
#ifdef ZEND_WIN32_FORCE_INLINE
1999-12-31 23:41:18 +08:00
# define inline __forceinline
#else
# define inline
#endif
1999-04-08 02:10:10 +08:00
#ifdef LIBZEND_EXPORTS
1999-04-08 02:10:10 +08:00
# define ZEND_API __declspec(dllexport)
#else
# define ZEND_API __declspec(dllimport)
#endif
2000-04-02 00:23:13 +08:00
#define ZEND_DLEXPORT __declspec(dllexport)
2002-04-22 17:33:25 +08:00
#define ZEND_DLIMPORT __declspec(dllimport)
2000-04-02 00:23:13 +08:00
/* 0x00200000L is MB_SERVICE_NOTIFICATION, which is only supported under Windows NT
* (and requires _WIN32_WINNT to be defined, which prevents the resulting executable
* from running under Windows 9x
* Windows 9x should silently ignore it, so it's being used here directly
*/
#ifndef MB_SERVICE_NOTIFICATION
#define MB_SERVICE_NOTIFICATION 0x00200000L
#endif
#define ZEND_SERVICE_MB_STYLE (MB_TOPMOST|MB_SERVICE_NOTIFICATION)
#endif /* ZEND_CONFIG_W32_H */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
*/