]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/configreader.h
Add more features to modestacker so that we can stack +, -, and parameterless modes
[user/henk/code/inspircd.git] / include / configreader.h
index 5c8a663070887c1ac3f0b204880d2e15fb625a14..44551b1329cbace399038e42a86e6fc3d64d92c9 100644 (file)
@@ -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;