doxy: add missing comments
authorRichard Russon <rich@flatcap.org>
Fri, 17 Aug 2018 20:50:49 +0000 (21:50 +0100)
committerRichard Russon <rich@flatcap.org>
Fri, 17 Aug 2018 20:50:49 +0000 (21:50 +0100)
conn/socket.h
init.h
mailbox.h

index 8ff679561f067290368101ebc4e1480f1fec3564..48870c15e27d42f1fa88e145983d06b72807e7aa 100644 (file)
@@ -29,6 +29,9 @@
 
 #include "mutt/mutt.h"
 
+/**
+ * enum ConnectionType - Type of connection
+ */
 enum ConnectionType
 {
   MUTT_CONNECTION_SIMPLE,
diff --git a/init.h b/init.h
index 6c06794f725b3cfe2a3f68de92affb2aafeb90d9..cad6eae19fa2eb369bc6943bbb1dadb5fffac8ac 100644 (file)
--- a/init.h
+++ b/init.h
@@ -90,7 +90,9 @@
 
 // clang-format off
 #ifndef _MAKEDOC
-/* flags to parse_set() */
+/**
+ * enum MuttSetCommand - Flags for parse_set()
+ */
 enum MuttSetCommand
 {
   MUTT_SET_SET,   /**< default is to set all vars */
index b6276dde185092e0c88625d5c0a553f7527105f5..437a182c225a625d2fadc6c41d43b218ae2a3c10 100644 (file)
--- a/mailbox.h
+++ b/mailbox.h
@@ -67,6 +67,9 @@ struct Mailbox
   time_t stats_last_checked; /**< mtime of mailbox the last time stats where checked. */
 };
 
+/**
+ * struct MailboxNode - List of Mailboxes
+ */
 struct MailboxNode
 {
   struct Mailbox *b;