1 /*	$NetBSD: dict_pgsql.h,v 1.1.1.1 2009/06/23 10:08:45 tron Exp $	*/
2 
3 #ifndef _DICT_PGSQL_INCLUDED_
4 #define _DICT_PGSQL_INCLUDED_
5 
6 /*++
7 /* NAME
8 /*	dict_pgsql 3h
9 /* SUMMARY
10 /*	dictionary manager interface to Postgresql files
11 /* SYNOPSIS
12 /*	#include <dict_pgsql.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_PGSQL "pgsql"
25 
26 extern DICT *dict_pgsql_open(const char *name, int unused_flags, int dict_flags);
27 
28 /* AUTHOR(S)
29 /*	Aaron Sethman
30 /*	androsyn@ratbox.org
31 /*
32 /*	Based upon dict_mysql.c by
33 /*
34 /*	Scott Cotton
35 /*	IC Group, Inc.
36 /*	scott@icgroup.com
37 /*
38 /*	Joshua Marcus
39 /*	IC Group, Inc.
40 /*	josh@icgroup.com
41 /*--*/
42 
43 #endif
44