version 1.3 | | version 1.4 |
---|
| | |
/* | | /* |
* static char *rcsid_glue_c = | | * static char *rcsid_glue_c = |
* "$Id: glue.c,v 1.3 2000/05/26 09:50:45 jec Exp $"; | | * "$Id: glue.c,v 1.4 2000/06/16 06:06:33 cvs Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
type_func_void init_blocksview_players_func; | | type_func_void init_blocksview_players_func; |
type_func_int_map_char info_map_func; | | type_func_int_map_char info_map_func; |
type_func_ob move_teleporter_func; | | type_func_ob move_teleporter_func; |
| | type_func_ob move_firewall_func; |
type_func_ob_int trap_adjust_func; | | type_func_ob_int trap_adjust_func; |
type_func_ob move_creator_func; | | type_func_ob move_creator_func; |
type_func_ob_ob esrv_send_item_func; | | type_func_ob_ob esrv_send_item_func; |
| | |
init_blocksview_players_func = dummy_function; | | init_blocksview_players_func = dummy_function; |
info_map_func = dummy_function_mapstr; | | info_map_func = dummy_function_mapstr; |
move_teleporter_func = dummy_function_ob; | | move_teleporter_func = dummy_function_ob; |
| | move_firewall_func = dummy_function_ob; |
trap_adjust_func = dummy_function_ob_int; | | trap_adjust_func = dummy_function_ob_int; |
move_creator_func = dummy_function_ob; | | move_creator_func = dummy_function_ob; |
esrv_send_item_func = dummy_function_ob2; | | esrv_send_item_func = dummy_function_ob2; |
| | |
move_teleporter_func = addr; | | move_teleporter_func = addr; |
} | | } |
| | |
| | void set_move_firewall(type_func_ob addr) { |
| | move_firewall_func = addr; |
| | } |
| | |
void set_trap_adjust(type_func_ob_int addr) { | | void set_trap_adjust(type_func_ob_int addr) { |
trap_adjust_func = addr; | | trap_adjust_func = addr; |
} | | } |