diff options
Diffstat (limited to 'include/git2')
| -rw-r--r-- | include/git2/types.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/git2/types.h b/include/git2/types.h index aa53909d2..269c48249 100644 --- a/include/git2/types.h +++ b/include/git2/types.h @@ -153,6 +153,13 @@ typedef enum { GIT_REF_HAS_PEEL = 8, } git_rtype; +/** Config variable type */ +typedef enum { + GIT_VAR_INT, /** Stores an integer value */ + GIT_VAR_BOOL, /** Stores a boolean value */ + GIT_VAR_STR /** Stores a string */ +} git_cvar_type; + /** @} */ GIT_END_DECL |
