/** * Includes.h * * Startup include file to compile the phpcpp library * * @author Emiel Bruijntjes * @copyright 2013 Copernica BV */ /** * Include standard C and C++ libraries */ #include #include #include #include // for debugging #include /** * PHP includes */ #include "php.h" /** * Macro to convert results to success status */ #define BOOL2SUCCESS(b) ((b) ? SUCCESS : FAILURE) /** * Include other files from this library */ #include "../include/type.h" #include "../include/request.h" #include "../include/argument.h" #include "../include/value.h" #include "../include/member.h" #include "../include/arguments.h" #include "../include/function.h" #include "../include/functions.h" #include "../include/extension.h" /** * Interface files for internal use only */ #include "callable.h" #include "arginfo.h" #include "hiddenpointer.h"