NeoMutt
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
lib.h
Go to the documentation of this file.
1
34#ifndef MUTT_COMPMBOX_LIB_H
35#define MUTT_COMPMBOX_LIB_H
36
37#include <stdbool.h>
38#include <stdio.h>
39#include "core/lib.h"
40
47{
48 const char *cmd_append;
49 const char *cmd_close;
50 const char *cmd_open;
51 long size;
52 const struct MxOps *child_ops;
53 bool locked;
54 FILE *fp_lock;
55};
56
57void mutt_comp_init(void);
58bool mutt_comp_can_append(struct Mailbox *m);
59bool mutt_comp_can_read(const char *path);
60int mutt_comp_valid_command(const char *cmd);
61
62extern const struct MxOps MxCompOps;
63
64#endif /* MUTT_COMPMBOX_LIB_H */
void mutt_comp_init(void)
Setup feature commands.
Definition: compress.c:73
bool mutt_comp_can_append(struct Mailbox *m)
Can we append to this path?
Definition: compress.c:367
int mutt_comp_valid_command(const char *cmd)
Is this command string allowed?
Definition: compress.c:416
bool mutt_comp_can_read(const char *path)
Can we read from this file?
Definition: compress.c:396
Convenience wrapper for the core headers.
const struct MxOps MxCompOps
Compressed Mailbox - Implements MxOps -.
Definition: compress.c:952
Private data for compress.
Definition: lib.h:47
const char * cmd_append
append-hook command
Definition: lib.h:48
FILE * fp_lock
fp used for locking
Definition: lib.h:54
const char * cmd_open
open-hook command
Definition: lib.h:50
const struct MxOps * child_ops
callbacks of de-compressed file
Definition: lib.h:52
bool locked
if realpath is locked
Definition: lib.h:53
const char * cmd_close
close-hook command
Definition: lib.h:49
long size
size of the compressed file
Definition: lib.h:51
A mailbox.
Definition: mailbox.h:79
Definition: mxapi.h:91