blob: 87413c8fb68bcf5819c316967c0e52c358b9c711 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef EXT_VARIABLES_ARGUMENTS_H
#define EXT_VARIABLES_ARGUMENTS_H
#include "sieve-common.h"
/*
* Variable argument
*/
extern const struct sieve_argument_def variable_argument;
/*
* Match value argument
*/
extern const struct sieve_argument_def match_value_argument;
/*
* Variable string argument
*/
extern const struct sieve_argument_def variable_string_argument;
#endif
|