From: Richard Russon Date: Fri, 17 Aug 2018 20:50:49 +0000 (+0100) Subject: doxy: add missing comments X-Git-Tag: 2019-10-25~689^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=895e46aefa083af0a0799bfa32a7e62a637fd0da;p=neomutt doxy: add missing comments --- diff --git a/conn/socket.h b/conn/socket.h index 8ff679561..48870c15e 100644 --- a/conn/socket.h +++ b/conn/socket.h @@ -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 6c06794f7..cad6eae19 100644 --- 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 */ diff --git a/mailbox.h b/mailbox.h index b6276dde1..437a182c2 100644 --- 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;