Commit | Line | Data |
---|---|---|
0756eb3c PH |
1 | /************************************************* |
2 | * Exim - an Internet mail transport agent * | |
3 | *************************************************/ | |
4 | ||
3386088d | 5 | /* Copyright (c) University of Cambridge 1995 - 2015 */ |
0756eb3c PH |
6 | /* See the file NOTICE for conditions of use and distribution. */ |
7 | ||
8 | /* Header for the functions that are shared by the lookups */ | |
9 | ||
1ba28e2b PP |
10 | extern int lf_check_file(int, uschar *, int, int, uid_t *, gid_t *, |
11 | const char *, uschar **); | |
0756eb3c | 12 | extern uschar *lf_quote(uschar *, uschar *, int, uschar *, int *, int *); |
55414b25 JH |
13 | extern int lf_sqlperform(const uschar *, const uschar *, const uschar *, |
14 | const uschar *, uschar **, | |
14b3c5bc JH |
15 | uschar **, uint *, int(*)(const uschar *, uschar *, uschar **, |
16 | uschar **, BOOL *, uint *)); | |
0756eb3c PH |
17 | |
18 | /* End of lf_functions.h */ |