aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2004-10-09 17:00:28 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2004-10-09 17:00:28 +0000
commit1a43af7bcb72433bd60472a83394bd4eeb9dc002 (patch)
tree10d19ef588dc8d2790f6a1aca554a905e5869ed5
parent9e78369f43cea0341ab82e571b7c23726331f3e8 (diff)
downloadgamma-1a43af7bcb72433bd60472a83394bd4eeb9dc002.tar.gz
gamma-1a43af7bcb72433bd60472a83394bd4eeb9dc002.tar.bz2
(sql_iface.connect): Changed prototype.
(sql_connect_create,scm_makenum): New prototypes.
-rw-r--r--src/guile-sql.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/guile-sql.h b/src/guile-sql.h
index d6d11af..2dfc84d 100644
--- a/src/guile-sql.h
+++ b/src/guile-sql.h
@@ -42,9 +42,13 @@ struct sql_iface {
SCM (*mark) (struct sql_connect *);
scm_sizet (*free) (struct sql_connect *);
SCM (*connect) (char *hostname, int port,
- char *dbname, char *user, char *pass, char *why);
+ char *dbname, char *user, char *pass, const char *why);
void (*close) (struct sql_connect *);
SCM (*query) (struct sql_connect *, char *query);
};
extern struct sql_iface sql_iftab[];
+
+SCM sql_connect_create (char *name);
+SCM scm_makenum (unsigned long val);
+

Return to:

Send suggestions and report system problems to the System administrator.