/*************************************************************************** MszPerl.h - description ------------------- begin : Mon Jan 5 2004 copyright : (C) 2004 by upi email : upi@feel ***************************************************************************/ /** This file helps include perl.h The windows version of perl.h contains a lot of stupid #defines, this file helps undefine them. */ #ifndef __MSZPERL_H #define __MSZPERL_H #include #include #ifdef _WINDOWS #undef bool #undef chdir #undef close #undef eof #define vsnprintf _vsnprintf #endif #endif // __MSZPERL_H