mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-08 19:51:31 +00:00
Add a GIT_ prefix to OBJ_ constants to scope them better
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
1cd20d3af0
commit
bce499af70
@ -71,15 +71,15 @@ GIT_EXTERN(void) git_odb_close(git_odb** db);
|
|||||||
|
|
||||||
/** Basic type (loose or packed) of any Git object. */
|
/** Basic type (loose or packed) of any Git object. */
|
||||||
typedef enum {
|
typedef enum {
|
||||||
OBJ_BAD = -1, /**< Object is invalid. */
|
GIT_OBJ_BAD = -1, /**< Object is invalid. */
|
||||||
OBJ__EXT1 = 0, /**< Reserved for future use. */
|
GIT_OBJ__EXT1 = 0, /**< Reserved for future use. */
|
||||||
OBJ_COMMIT = 1, /**< A commit object. */
|
GIT_OBJ_COMMIT = 1, /**< A commit object. */
|
||||||
OBJ_TREE = 2, /**< A tree (directory listing) object. */
|
GIT_OBJ_TREE = 2, /**< A tree (directory listing) object. */
|
||||||
OBJ_BLOB = 3, /**< A file revision object. */
|
GIT_OBJ_BLOB = 3, /**< A file revision object. */
|
||||||
OBJ_TAG = 4, /**< An annotated tag object. */
|
GIT_OBJ_TAG = 4, /**< An annotated tag object. */
|
||||||
OBJ__EXT2 = 5, /**< Reserved for future use. */
|
GIT_OBJ__EXT2 = 5, /**< Reserved for future use. */
|
||||||
OBJ_OFS_DELTA = 6, /**< A delta, base is given by an offset. */
|
GIT_OBJ_OFS_DELTA = 6, /**< A delta, base is given by an offset. */
|
||||||
OBJ_REF_DELTA = 7, /**< A delta, base is given by object id. */
|
GIT_OBJ_REF_DELTA = 7, /**< A delta, base is given by object id. */
|
||||||
} git_otype;
|
} git_otype;
|
||||||
|
|
||||||
/** A small object read from the database. */
|
/** A small object read from the database. */
|
||||||
|
Loading…
Reference in New Issue
Block a user