xref: /netbsd-src/external/ibm-public/postfix/dist/src/global/dict_sqlite.h (revision ff6d749d9964a9b179f9760ce6992137cffbaefe)
1 /*	$NetBSD: dict_sqlite.h,v 1.1.1.1 2011/03/02 19:32:14 tron Exp $	*/
2 
3 #ifndef _DICT_SQLITE_H_INCLUDED_
4 #define _DICT_SQLITE_H_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	dict_sqlite 3h
9 /* SUMMARY
10 /*	dictionary manager interface to sqlite databases
11 /* SYNOPSIS
12 /*	#include <dict_sqlite.h>
13 /* DESCRIPTION
14 /* .nf
15 
16  /*
17   * Utility library.
18   */
19 #include <dict.h>
20 
21  /*
22   * External interface.
23   */
24 #define DICT_TYPE_SQLITE "sqlite"
25 
26 extern DICT *dict_sqlite_open(const char *, int, int);
27 
28 
29 /* AUTHOR(S)
30 /*	Axel Steiner
31 /*	ast@treibsand.com
32 /*--*/
33 
34 #endif
35