diff options
Diffstat (limited to 'include/git2')
| -rw-r--r-- | include/git2/config.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/git2/config.h b/include/git2/config.h index d9da65b84..7bcca7da2 100644 --- a/include/git2/config.h +++ b/include/git2/config.h @@ -64,6 +64,7 @@ typedef enum { typedef struct git_config_entry { const char *name; /**< Name of the entry (normalised) */ const char *value; /**< String value of the entry */ + unsigned int include_depth; /**< Depth of includes where this variable was found */ git_config_level_t level; /**< Which config file this was found in */ void (*free)(struct git_config_entry *entry); /**< Free function for this entry */ void *payload; /**< Opaque value for the free function. Do not read or write */ |
