/* $Id: obj_cmds.h,v 1.666 2004/09/20 10:49:51 shrike Exp $ */ /************************************************************************************ * Copyright 2004 Astrum Metaphora consortium * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * * * ************************************************************************************/ #include "typedef.h" struct obj_cmd_type { char * const name; OBJ_FUN * obj_fun; }; /* * OBJcommand functions * Defined in mob_cmds.c */ DECLARE_OBJ_FUN( do_opgecho ); DECLARE_OBJ_FUN( do_opzecho ); DECLARE_OBJ_FUN( do_opecho ); DECLARE_OBJ_FUN( do_opechoaround ); DECLARE_OBJ_FUN( do_opechoat ); DECLARE_OBJ_FUN( do_opmload ); DECLARE_OBJ_FUN( do_opoload ); DECLARE_OBJ_FUN( do_oppurge ); DECLARE_OBJ_FUN( do_opgoto ); DECLARE_OBJ_FUN( do_optransfer ); DECLARE_OBJ_FUN( do_opgtransfer ); DECLARE_OBJ_FUN( do_opotransfer ); DECLARE_OBJ_FUN( do_opforce ); DECLARE_OBJ_FUN( do_opgforce ); DECLARE_OBJ_FUN( do_opvforce ); DECLARE_OBJ_FUN( do_opdamage ); DECLARE_OBJ_FUN( do_opremember ); DECLARE_OBJ_FUN( do_opforget ); DECLARE_OBJ_FUN( do_opdelay ); DECLARE_OBJ_FUN( do_opcancel ); DECLARE_OBJ_FUN( do_opcall ); DECLARE_OBJ_FUN( do_opremove );