diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-15 10:59:36 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-15 10:59:36 +0000 |
commit | b45e7cfebbeaad4ecc3c55bc3060140f50f710d3 (patch) | |
tree | f5d168a3abe2b52b3e32f344c07ddeedaed3c698 /include | |
parent | ea483e49729ba1cd9b32feed8e49bb4f35691b2b (diff) |
Annotations
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5254 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r-- | include/configreader.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h index 5c8a66307..44551b132 100644 --- a/include/configreader.h +++ b/include/configreader.h @@ -37,6 +37,8 @@ typedef bool (*MultiNotify)(ServerConfig* conf, const char*); enum ConfigDataType { DT_NOTHING, DT_INTEGER, DT_CHARPTR, DT_BOOLEAN }; +/** Holds a core configuration item and its callbacks + */ struct InitialConfig { char* tag; @@ -46,6 +48,9 @@ struct InitialConfig Validator validation_function; }; +/** Holds a core configuration item and its callbacks + * where there may be more than one item + */ struct MultiConfig { const char* tag; |