diff options
Diffstat (limited to 'userdiff.h')
-rw-r--r-- | userdiff.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/userdiff.h b/userdiff.h index 2ef0ce5452..203057e13e 100644 --- a/userdiff.h +++ b/userdiff.h @@ -3,6 +3,9 @@ #include "notes-cache.h" +struct index_state; +struct repository; + struct userdiff_funcname { const char *pattern; int cflags; @@ -21,12 +24,14 @@ struct userdiff_driver { int userdiff_config(const char *k, const char *v); struct userdiff_driver *userdiff_find_by_name(const char *name); -struct userdiff_driver *userdiff_find_by_path(const char *path); +struct userdiff_driver *userdiff_find_by_path(struct index_state *istate, + const char *path); /* * Initialize any textconv-related fields in the driver and return it, or NULL * if it does not have textconv enabled at all. */ -struct userdiff_driver *userdiff_get_textconv(struct userdiff_driver *driver); +struct userdiff_driver *userdiff_get_textconv(struct repository *r, + struct userdiff_driver *driver); #endif /* USERDIFF */ |