00001 /* 00002 * The AVExec function will turn the Avenue source code 00003 * contained in source into an Avenue script, and execute 00004 * the script. If there are any errors, AVExec returns NULL. 00005 * Otherwise, AVExec turns the resultant object into a 00006 * string and returns it. Do NOT modify the resultant string. 00007 */ 00008 00009 #if defined (__cplusplus) 00010 extern "C" { 00011 #endif 00012 char *AVExec(char* source); 00013 #if defined (__cplusplus) 00014 } 00015 #endif