00001 00015 #include <stdlib.h> 00016 00017 #include "globals.h" 00018 #include "output.h" 00019 #include "class.h" 00020 #include "object.h" 00021 00022 STATUS matlab_startup(int argc, char *argv) 00023 { 00024 if (system("matlab -r gl")==0) 00025 return SUCCESS; 00026 else 00027 return FAILED; 00028 } 00029 00030 MODULE *load_java_module(const char *file, 00031 int argc, 00032 char *argv[]) 00033 { 00034 output_error("support for Java modules is implemented somewhere else ~ please review the documentation"); 00035 return NULL; 00036 } 00037 00038 MODULE *load_python_module(const char *file, 00039 int argc, 00040 char *argv[]) 00041 { 00043 output_error("support for Python modules is not implemented yet"); 00044 return NULL; 00045 } 00046