<? /** * @file ddserver_ini.php * @brief All DD Server External Data initialisations */ define("DDBASEBIN", getenv("DDBASEBIN")); define("DDBASE", getenv("DDBASE")); define("DDLIB", getenv("DDLIB")); $old_include_path = set_include_path("./:".DDLIB); /* * Open STDERR stream */ $STDERR = fopen("php://stderr","w"); if (!function_exists('__autoload')) { function __autoload($class_name) { require_once $class_name . '.php'; } } ?>