commit: add repository argument to lookup_commit_reference
[gitweb.git] / commit.h
index 01b8b1d6896b9ce8e532cd49474cc384704fecfc..2a4111344573c9523364d493dddc13db8a01f021 100644 (file)
--- a/commit.h
+++ b/commit.h
@@ -64,8 +64,13 @@ void add_name_decoration(enum decoration_type type, const char *name, struct obj
 const struct name_decoration *get_name_decoration(const struct object *obj);
 
 struct commit *lookup_commit(const struct object_id *oid);
-struct commit *lookup_commit_reference(const struct object_id *oid);
-struct commit *lookup_commit_reference_gently(const struct object_id *oid,
+#define lookup_commit_reference(r, o) \
+               lookup_commit_reference_##r(o)
+struct commit *lookup_commit_reference_the_repository(const struct object_id *oid);
+#define lookup_commit_reference_gently(r, o, q) \
+               lookup_commit_reference_gently_##r(o, q)
+struct commit *lookup_commit_reference_gently_the_repository(
+                                             const struct object_id *oid,
                                              int quiet);
 struct commit *lookup_commit_reference_by_name(const char *name);