Staging
v0.5.1
https://github.com/git/git
Revision a475e8095aeb898c1ca60673b82df97d2300cc95 authored by Junio C Hamano on 21 August 2007, 05:48:29 UTC, committed by Junio C Hamano on 21 August 2007, 05:48:29 UTC
Hopefully last rc of 1.5.3 cycle, except a few documentation and
message wording changes, and git-gui 0.8.2.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 941fd1c
Raw File
Tip revision: a475e8095aeb898c1ca60673b82df97d2300cc95 authored by Junio C Hamano on 21 August 2007, 05:48:29 UTC
GIT 1.5.3-rc6
Tip revision: a475e80
decorate.h
#ifndef DECORATE_H
#define DECORATE_H

struct object_decoration {
	struct object *base;
	void *decoration;
};

struct decoration {
	const char *name;
	unsigned int size, nr;
	struct object_decoration *hash;
};

extern void *add_decoration(struct decoration *n, struct object *obj, void *decoration);
extern void *lookup_decoration(struct decoration *n, struct object *obj);

#endif
back to top