#define MUTT_CONN_CONN_H
#include <stdio.h>
-
-#include "connaccount.h"
#include "conn_globals.h"
+#include "connaccount.h"
#include "connection.h"
#include "sasl_plain.h"
#include "socket.h"
#include <stddef.h>
#include <time.h>
-
#include "mutt/mutt.h"
/**
<ulink url="https://github.com/google/gmail-oauth2-tools/blob/master/python/oauth2.py">https://github.com/google/gmail-oauth2-tools/blob/master/python/oauth2.py</ulink>
</para>
<para>
- You'll need to get your own oauth client credentials for Gmail here:
+ You'll need to get your own oauth client credentials for Gmail here:
<ulink url="https://console.developers.google.com/apis/credentials">https://console.developers.google.com/apis/credentials</ulink>
</para>
<para>
};
/**
- * struct etags - Enriched text tags
+ * struct Etags - Enriched text tags
*/
-struct etags
+struct Etags
{
const wchar_t *tag_name;
int index;
};
// clang-format off
-static const struct etags EnrichedTags[] = {
+static const struct Etags EnrichedTags[] = {
{ L"param", RICH_PARAM },
{ L"bold", RICH_BOLD },
{ L"italic", RICH_ITALIC },
MENU_KEY_SELECT_PGP, ///< Select a PGP key
MENU_KEY_SELECT_SMIME, ///< Select a SMIME key
#endif
-
#ifdef MIXMASTER
MENU_MIX, ///< Create/edit a Mixmaster chain
#endif
-
- MENU_MAX
+ MENU_MAX,
};
/* the keymap trees (one for each menu) */
OPS_SMIME(_fmt) \
OPS_CRYPT(_fmt) \
-enum mutt_ops {
+enum MuttOps {
#define DEFINE_OPS(opcode, help_string) opcode,
OPS(DEFINE_OPS)
#undef DEFINE_OPS