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, |
|
2006-03-14 22:19:00 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| 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
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/* $Id$ */
|
1999-07-16 22:58:16 +08:00
|
|
|
|
2000-07-03 07:54:19 +08:00
|
|
|
#ifndef ZEND_CONFIG_W32_H
|
|
|
|
#define ZEND_CONFIG_W32_H
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2006-03-14 22:19:00 +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;
|
|
|
|
|
1999-09-07 00:14:08 +08:00
|
|
|
#define HAVE_STDIOSTR_H 1
|
1999-09-30 05:46:37 +08:00
|
|
|
#define HAVE_CLASS_ISTDIOSTREAM
|
1999-09-07 00:14:08 +08:00
|
|
|
#define istdiostream stdiostream
|
2000-06-02 20:21:49 +08:00
|
|
|
|
2002-04-25 16:59:36 +08:00
|
|
|
#define snprintf _snprintf
|
2008-07-18 01:48:50 +08:00
|
|
|
#if _MSC_VER < 1500
|
2000-06-02 20:21:49 +08:00
|
|
|
#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))
|
2002-01-28 04:20:19 +08:00
|
|
|
#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
|
|
|
|
|
1999-12-25 05:27:55 +08:00
|
|
|
/* 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
|
|
|
|
1999-04-26 22:10:42 +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
|
|
|
|
2006-03-14 22:19:00 +08:00
|
|
|
/* 0x00200000L is MB_SERVICE_NOTIFICATION, which is only supported under Windows NT
|
2000-06-30 20:55:00 +08:00
|
|
|
* (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)
|
|
|
|
|
2000-07-03 07:54:19 +08:00
|
|
|
#endif /* ZEND_CONFIG_W32_H */
|
2003-02-01 09:49:15 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|