Index: generic/xotclInt.h =================================================================== diff -u -r98003953e8c728b105528e0c2ed7d67ee7135d64 -rfd82d80829200a3928e29cdfc0d19df6222a9267 --- generic/xotclInt.h (.../xotclInt.h) (revision 98003953e8c728b105528e0c2ed7d67ee7135d64) +++ generic/xotclInt.h (.../xotclInt.h) (revision fd82d80829200a3928e29cdfc0d19df6222a9267) @@ -443,11 +443,12 @@ #define XOTCL_FILTER_ORDER_DEFINED_AND_VALID 0x0030 /* IS_CLASS set, when object is a class */ #define XOTCL_IS_CLASS 0x0040 +#define XOTCL_IS_METACLASS 0x0080 /* DESTROYED set, when object is physically destroyed with PrimitiveODestroy */ -#define XOTCL_DESTROYED 0x0080 -#define XOTCL_REFCOUNTED 0x0100 -#define XOTCL_RECREATE 0x0200 -#define XOTCL_NS_DESTROYED 0x0400 +#define XOTCL_DESTROYED 0x0100 +#define XOTCL_REFCOUNTED 0x0200 +#define XOTCL_RECREATE 0x0400 +#define XOTCL_NS_DESTROYED 0x0800 #define XOTclObjectSetClass(obj) \ (obj)->flags |= XOTCL_IS_CLASS