1#ifndef DECORATE_H2#define DECORATE_H34struct object_decoration {5const struct object *base;6void *decoration;7};89struct decoration {10const char *name;11unsigned int size, nr;12struct object_decoration *hash;13};1415extern void *add_decoration(struct decoration *n, const struct object *obj, void *decoration);16extern void *lookup_decoration(struct decoration *n, const struct object *obj);1718#endif