#ifndef __5D_Evaluators_FFI_H #define __5D_Evaluators_FFI_H /* 5D programming language Copyright (C) 2011 Danny Milosavljevic This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include #include #include "Evaluators/Evaluators" #include "Values/Values" #ifndef PREFIX #define PREFIX "/usr" #endif namespace Evaluators { DECLARE_FULL_OPERATION(wrapWrite) DECLARE_FULL_OPERATION(wrapFlush) DECLARE_FULL_OPERATION(wrapReadline) DECLARE_FULL_OPERATION(wrapGetErrno) DECLARE_FULL_OPERATION(GmtimeMaker) DECLARE_FULL_OPERATION(TimeMaker) #ifdef WIN32 DECLARE_FULL_OPERATION(Win32FindDataWSizeGetter) DECLARE_FULL_OPERATION(Win32FindDataWUnpacker) #else DECLARE_FULL_OPERATION(DirentSizeGetter) DECLARE_FULL_OPERATION(DirentUnpacker) #endif }; // end namespace #endif /* ndef __5D_Evaluators_FFI_H */