123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- #ifndef ZEND_CONFIG_W32_H
- #define ZEND_CONFIG_W32_H
- #include <../main/config.w32.h>
- #define _CRTDBG_MAP_ALLOC
- #include <malloc.h>
- #include <stdlib.h>
- #include <crtdbg.h>
- #include <string.h>
- #ifndef ZEND_INCLUDE_FULL_WINDOWS_HEADERS
- #define WIN32_LEAN_AND_MEAN
- #endif
- #include <winsock2.h>
- #include <windows.h>
- #include <float.h>
- #define HAVE_STDIOSTR_H 1
- #define HAVE_CLASS_ISTDIOSTREAM
- #define istdiostream stdiostream
- #if _MSC_VER < 1900
- #define snprintf _snprintf
- #endif
- #define strcasecmp(s1, s2) _stricmp(s1, s2)
- #define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n)
- #ifdef LIBZEND_EXPORTS
- # define ZEND_API __declspec(dllexport)
- #else
- # define ZEND_API __declspec(dllimport)
- #endif
- #define ZEND_DLEXPORT __declspec(dllexport)
- #define ZEND_DLIMPORT __declspec(dllimport)
- #endif
|