diff options
Diffstat (limited to 'src/interfaces/libpgtcl/pgtclId.h')
-rw-r--r-- | src/interfaces/libpgtcl/pgtclId.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/interfaces/libpgtcl/pgtclId.h b/src/interfaces/libpgtcl/pgtclId.h index 9cb431918aa..03856434d6b 100644 --- a/src/interfaces/libpgtcl/pgtclId.h +++ b/src/interfaces/libpgtcl/pgtclId.h @@ -1,22 +1,22 @@ /*------------------------------------------------------------------------- * * pgtclId.h-- - * useful routines to convert between strings and pointers - * Needed because everything in tcl is a string, but often, pointers - * to data structures are needed. - * + * useful routines to convert between strings and pointers + * Needed because everything in tcl is a string, but often, pointers + * to data structures are needed. + * * * Copyright (c) 1994, Regents of the University of California * - * $Id: pgtclId.h,v 1.2 1996/10/30 06:18:42 scrappy Exp $ + * $Id: pgtclId.h,v 1.3 1997/09/07 05:03:14 momjian Exp $ * *------------------------------------------------------------------------- */ -extern void PgSetConnectionId(Pg_clientData *cd, char *id, PGconn *conn); -extern PGconn *PgGetConnectionId(Pg_clientData *cd, char *id); -extern void PgDelConnectionId(Pg_clientData *cd, char *id); -extern void PgSetResultId(Pg_clientData *cd, char *id, char *connid, PGresult *res); -extern PGresult *PgGetResultId(Pg_clientData *cd, char *id); -extern void PgDelResultId(Pg_clientData *cd, char *id); -extern void PgGetConnByResultId(Pg_clientData *cd, char *id, char *resid); +extern void PgSetConnectionId(Pg_clientData * cd, char *id, PGconn * conn); +extern PGconn *PgGetConnectionId(Pg_clientData * cd, char *id); +extern void PgDelConnectionId(Pg_clientData * cd, char *id); +extern void PgSetResultId(Pg_clientData * cd, char *id, char *connid, PGresult * res); +extern PGresult *PgGetResultId(Pg_clientData * cd, char *id); +extern void PgDelResultId(Pg_clientData * cd, char *id); +extern void PgGetConnByResultId(Pg_clientData * cd, char *id, char *resid); |