version 1.11 | | version 1.12 |
---|
| | |
/* | | /* |
* static char *rcsid_define_h = | | * static char *rcsid_define_h = |
* "$Id: define.h,v 1.11 2000/05/27 06:02:58 cvs Exp $"; | | * "$Id: define.h,v 1.12 2000/06/09 12:01:46 jec Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
safe_strcat(retbuf,")", len, maxlen); \ | | safe_strcat(retbuf,")", len, maxlen); \ |
} | | } |
| | |
#define AP_APPLY 1 | | /* Flags for apply_special() */ |
#define AP_UNAPPLY 2 | | enum apply_flag { |
| | /* Basic flags, always use one of these */ |
| | AP_NULL = 0, |
| | AP_APPLY = 1, |
| | AP_UNAPPLY = 2, |
| | |
| | AP_BASIC_FLAGS = 15, |
| | |
| | /* Optional flags, for bitwise or with a basic flag */ |
| | AP_NO_MERGE = 16, |
| | AP_IGNORE_CURSE = 32, |
| | }; |
| | |
/* Cut off point of when an object is put on the active list or not */ | | /* Cut off point of when an object is put on the active list or not */ |
#define MIN_ACTIVE_SPEED 0.00001 | | #define MIN_ACTIVE_SPEED 0.00001 |