diff options
author | Johan Herland <johan@herland.net> | 2010-02-13 22:28:13 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-13 19:36:12 -0800 |
commit | 2626b5367047d8b8d5c4555ec6b579ed37a6625d (patch) | |
tree | 2558dc64ff0f77b00958976c188158f00a105da3 /notes.h | |
parent | 709f79b0894859a6624e99b3a0c4714dd4ece494 (diff) | |
download | git-2626b5367047d8b8d5c4555ec6b579ed37a6625d.tar.gz |
Notes API: add_note(): Add note objects to the internal notes tree structure
Signed-off-by: Johan Herland <johan@herland.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes.h')
-rw-r--r-- | notes.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,10 @@ */ void init_notes(const char *notes_ref, int flags); +/* Add the given note object to the internal notes tree structure */ +void add_note(const unsigned char *object_sha1, + const unsigned char *note_sha1); + /* Free (and de-initialize) the internal notes tree structure */ void free_notes(void); |