Files
nethack/include
nethack.allison f55210be79 code change - oextra
move oattached and oname and other things that vary
the size of the obj structure into a separate
non-adjacent oextra structure, similar to what has
already been done for mextra. The obj structure
itself becomes a fixed size.

New macros:

#define ONAME(o)	((o)->oextra->oname)
#define OMID(o)		((o)->oextra->omid)
#define OMONST(o)	((o)->oextra->omonst)
#define OLONG(o)	((o)->oextra->olong)
#define OMAILCMD(o)	((o)->oextra->omailcmd)

#define has_oname(o)	((o)->oextra && ONAME(o))
#define has_omid(o)	((o)->oextra && OMID(o))
#define has_omonst(o)	((o)->oextra && OMONST(o))
#define has_olong(o)	((o)->oextra && OLONG(o))
#define has_omailcmd(o)	((o)->oextra && OMAILCMD(o))

changed macros:
has_name(mon) becomes has_mname(mon)  to correspond.

The CVS repository was tagged with
	NETHACK_PRE_OEXTRA
before commiting these, and
tagged with
	NETHACK_POST_OEXTRA
immediately after. The diff
between those two tags is this oextra patch.

The associated mail daemon changes to use an oextra
structure instead of a hidden command located in the
name after the terminating NUL, have not been tried
or tested.
2006-04-14 16:23:56 +00:00
..
2002-01-18 02:50:06 +00:00
2002-01-05 21:05:47 +00:00
2005-01-23 16:29:16 +00:00
2005-12-11 03:09:05 +00:00
2005-11-26 02:32:49 +00:00
2005-06-18 04:38:50 +00:00
2006-04-14 16:23:56 +00:00
2006-01-14 17:02:22 +00:00
2002-01-05 21:05:47 +00:00
2002-01-05 21:05:47 +00:00
2006-04-14 16:23:56 +00:00
2005-03-13 05:29:01 +00:00
2005-10-06 03:45:20 +00:00
2006-03-12 04:43:28 +00:00
2006-04-14 16:23:56 +00:00
2006-04-14 16:23:56 +00:00
2006-01-06 05:46:03 +00:00
2002-01-05 21:05:48 +00:00
2005-01-08 14:37:36 +00:00
2006-02-12 06:24:25 +00:00
2005-01-02 20:55:41 +00:00
2005-01-23 19:39:01 +00:00
2005-01-09 21:40:24 +00:00
2006-03-02 05:54:04 +00:00