X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=interfaces%2Fpostgresql%2Fpostgresql-api.cl;h=83ba30723d6b2dc2f77673b1fc90419602346b96;hb=82dcac72ceee1ce964188726d7049ee5f19974e5;hp=f2319bec39b8d9f9a84a840af1446be02b9ca256;hpb=33401393ccc0a9567da4104b3c2e7608956a8624;p=clsql.git diff --git a/interfaces/postgresql/postgresql-api.cl b/interfaces/postgresql/postgresql-api.cl index f2319be..83ba307 100644 --- a/interfaces/postgresql/postgresql-api.cl +++ b/interfaces/postgresql/postgresql-api.cl @@ -8,7 +8,7 @@ ;;;; Original code by Pierre R. Mai ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: postgresql-api.cl,v 1.3 2002/03/25 14:13:41 kevin Exp $ +;;;; $Id: postgresql-api.cl,v 1.5 2002/03/29 09:37:24 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; and Copyright (c) 1999-2001 by Pierre R. Mai @@ -57,10 +57,10 @@ ((:bytea 17) (:int2 21) (:int4 23) + (:int8 20) (:float4 700) (:float8 701))) - ;;(declaim (inline PQsetdbLogin)) ;; causes compile error in LW 4.2.0 (uffi:def-function ("PQsetdbLogin" PQsetdbLogin) ((pghost :cstring) @@ -196,3 +196,9 @@ ((res pgsql-result)) :module "postgresql" :returning :void) + +(declaim (inline PQisBusy)) +(uffi:def-function ("PQisBusy" PQisBusy) + ((conn pgsql-conn)) + :module "postgresql" + :returning :int)