MFB: fix build

This commit is contained in:
foobar 2003-06-04 05:32:03 +00:00
parent ef1263a589
commit b2ee53106f

View file

@ -7,6 +7,9 @@
#include "php.h" #include "php.h"
/* 2.0.12: this now checks the clipping rectangle */
#define gdImageBoundsSafeMacro(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx1) || ((x) > (im)->cx2))))
#ifdef _MSC_VER #ifdef _MSC_VER
# if _MSC_VER >= 1300 # if _MSC_VER >= 1300
/* in MSVC.NET the these are available but only for __cplusplus and not _MSC_EXTENSIONS */ /* in MSVC.NET the these are available but only for __cplusplus and not _MSC_EXTENSIONS */