X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/56e0c4ce946ae13628c4349f982c3407e1019dd0..6545de78cb822ab5db97a2f16fe7a42cc9488bd8:/src/src/lookupapi.h diff --git a/src/src/lookupapi.h b/src/src/lookupapi.h index 97f92ab3a..3c9b1bb6c 100644 --- a/src/src/lookupapi.h +++ b/src/src/lookupapi.h @@ -43,11 +43,14 @@ typedef struct lookup_info { uschar *(*quote)( /* quoting function */ uschar *, /* string to quote */ uschar *); /* additional data from quote name */ + void (*version_report)( /* diagnostic function */ + FILE *); /* fh to write to */ } lookup_info; /* This magic number is used by the following lookup_module_info structure - for checking API compatibility. It's equivalent to the string"LMM1" */ -#define LOOKUP_MODULE_INFO_MAGIC 0x4c4d4d31 + for checking API compatibility. It's equivalent to the string"LMM2" */ +#define LOOKUP_MODULE_INFO_MAGIC 0x4c4d4d32 +/* Version 2 adds: version_report */ typedef struct lookup_module_info { uint magic;