Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1996-12-19 05:02:51 +0000
committerMarc G. Fournier1996-12-19 05:02:51 +0000
commit56e8243d223cec721e9a4dd2288f9d9af7cd48c2 (patch)
tree6d837efcabddffb8b8b7a7eb617158271325bc5b /src/interfaces/libpgtcl/pgtcl.c
parent194ed4efe5c74e40452ac26142770200ff6f4111 (diff)
Add two new comments to pglibtcl...
From: Massimo Dal Zotto <dz@cs.unitn.it>
Diffstat (limited to 'src/interfaces/libpgtcl/pgtcl.c')
-rw-r--r--src/interfaces/libpgtcl/pgtcl.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/interfaces/libpgtcl/pgtcl.c b/src/interfaces/libpgtcl/pgtcl.c
index 2cbec47395d..cc77d7e6857 100644
--- a/src/interfaces/libpgtcl/pgtcl.c
+++ b/src/interfaces/libpgtcl/pgtcl.c
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.5 1996/11/11 12:14:38 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.6 1996/12/19 05:02:47 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -159,6 +159,16 @@ Pgtcl_Init (Tcl_Interp *interp)
Pg_lo_export,
(ClientData)cd, (Tcl_CmdDeleteProc*)NULL);
+ Tcl_CreateCommand(interp,
+ "pg_listen",
+ Pg_listen,
+ (ClientData)NULL, (Tcl_CmdDeleteProc*)NULL);
+
+ Tcl_CreateCommand(interp,
+ "pg_notifies",
+ Pg_notifies,
+ (ClientData)NULL, (Tcl_CmdDeleteProc*)NULL);
+
Tcl_PkgProvide(interp, "Pgtcl", "1.0");
return TCL_OK;