diff options
Diffstat (limited to 'pigeonhole/src/lib-sieve/plugins/variables/ext-variables-operands.h')
-rw-r--r-- | pigeonhole/src/lib-sieve/plugins/variables/ext-variables-operands.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/pigeonhole/src/lib-sieve/plugins/variables/ext-variables-operands.h b/pigeonhole/src/lib-sieve/plugins/variables/ext-variables-operands.h new file mode 100644 index 0000000..64a7781 --- /dev/null +++ b/pigeonhole/src/lib-sieve/plugins/variables/ext-variables-operands.h @@ -0,0 +1,37 @@ +#ifndef EXT_VARIABLES_OPERANDS_H +#define EXT_VARIABLES_OPERANDS_H + +#include "lib.h" +#include "hash.h" +#include "str.h" +#include "array.h" + +#include "sieve-common.h" +#include "ext-variables-common.h" + +/* + * Variable operand + */ + +extern const struct sieve_operand_def variable_operand; + +bool ext_variables_opr_variable_read + (const struct sieve_runtime_env *renv, sieve_size_t *address, + struct sieve_variable_storage **storage, unsigned int *var_index); + +/* + * Match value operand + */ + +extern const struct sieve_operand_def match_value_operand; + +/* + * Variable string operand + */ + +void ext_variables_opr_variable_string_emit + (struct sieve_binary *sbin, unsigned int elements); + + +#endif + |