--- deliantra/server/include/global.h 2008/04/21 23:35:24 1.72 +++ deliantra/server/include/global.h 2009/04/27 01:38:48 1.75 @@ -1,7 +1,7 @@ /* * This file is part of Deliantra, the Roguelike Realtime MMORPG. * - * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team + * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team * Copyright (©) 1992,2007 Frank Tore Johansen * @@ -150,6 +150,8 @@ EXTERN char errmsg[HUGE_BUF]; EXTERN long ob_count; +extern dynbuf_text msg_dynbuf; // a dynbuf for text messages and other temporary data + #define SET_ANIMATION(ob,newanim) ob->face = animations [ob->animation_id].faces [newanim] #define GET_ANIMATION(ob,anim) animations [ob->animation_id].faces [anim] #define GET_ANIM_ID(ob) (ob->animation_id) @@ -236,5 +238,9 @@ void reset_signals (); +#ifdef DEVEL +# include "devel.h" +#endif + #endif /* GLOBAL_H */