/* * This has been split off to do the process_command stuff. * Place any functions that acvtually need to be called by that in * iun here. ie not move... */ object my_pl; string do_process( string str ) { my_pl = previous_object(); return process_string( str ); } /* do_process() */ string short( mixed a1, mixed a2 ) { return( string ) my_pl->short( a1, a2 ); } /* short() */ string query_name() { return( string ) my_pl->query_name(); } string query_cap_name() { return( string ) my_pl->query_cap_name(); } string octarine_message( string str ) { return( string ) my_pl->octarine_message( str ); } /* octarine_message() */ string read_message( string str, string type, string lang ) { return( string ) my_pl->read_message( str, type, lang ); } /* read_message() */