NeoMutt  2024-11-14-34-g5aaf0d
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
node_condbool.h
Go to the documentation of this file.
1
24#ifndef MUTT_EXPANDO_NODE_CONDBOOL_H
25#define MUTT_EXPANDO_NODE_CONDBOOL_H
26
27#include "render.h"
28
29struct Buffer;
30struct ExpandoNode;
31
32int node_condbool_render(const struct ExpandoNode *node,
33 const struct ExpandoRenderData *rdata, struct Buffer *buf,
34 int max_cols, void *data, MuttFormatFlags flags);
35
36#endif /* MUTT_EXPANDO_NODE_CONDBOOL_H */
int node_condbool_render(const struct ExpandoNode *node, const struct ExpandoRenderData *rdata, struct Buffer *buf, int max_cols, void *data, MuttFormatFlags flags)
Callback for every bool node - Implements ExpandoNode::render() -.
Definition: node_condbool.c:41
Render Expandos using Data.
uint8_t MuttFormatFlags
Flags for expando_render(), e.g. MUTT_FORMAT_FORCESUBJ.
Definition: render.h:32
String manipulation buffer.
Definition: buffer.h:36
Basic Expando Node.
Definition: node.h:67