1 /*-------------------------------------------------------------------------
2  *
3  * libpgtcl.h
4  *
5  *	libpgtcl is a tcl package for front-ends to interface with PostgreSQL.
6  *	It's a Tcl wrapper for libpq.
7  *
8  * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
9  * Portions Copyright (c) 1994, Regents of the University of California
10  *
11  * $Id: libpgtcl.h 5 2004-02-29 20:54:55Z lbayuk $
12  *
13  *-------------------------------------------------------------------------
14  */
15 
16 #ifndef LIBPGTCL_H
17 #define LIBPGTCL_H
18 
19 #include <tcl.h>
20 
21 extern int	Pgtcl_Init(Tcl_Interp *interp);
22 extern int	Pgtcl_SafeInit(Tcl_Interp *interp);
23 
24 #endif   /* LIBPGTCL_H */
25