diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-06-15 04:56:45 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-06-15 04:56:45 +0000 |
commit | a64927f995cb63268eff310217440bdd57a415c1 (patch) | |
tree | 5fccb9d620f024ca9a41d3ac61376ce2d66ca437 /src/interfaces/ecpg/include | |
parent | 228c02c3e5f91ab1950d89b99f5b798e753d4f29 (diff) | |
download | postgresql-a64927f995cb63268eff310217440bdd57a415c1.tar.gz postgresql-a64927f995cb63268eff310217440bdd57a415c1.zip |
Ecpg cleanups for prototypes.
Diffstat (limited to 'src/interfaces/ecpg/include')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 21e2db33f04..da91927854c 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -38,6 +38,9 @@ extern "C" { #endif +struct sqlca_t; + +void ECPGinit_sqlca(struct sqlca_t *sqlca); void ECPGdebug(int, FILE *); bool ECPGstatus(int, const char *); bool ECPGsetcommit(int, const char *, const char *); @@ -49,10 +52,10 @@ bool ECPGdisconnect(int, const char *); bool ECPGprepare(int, char *, char *); bool ECPGdeallocate(int, char *); bool ECPGdeallocate_all(int); -char *ECPGprepared_statement(char *); +char *ECPGprepared_statement(char *); void ECPGlog(const char *format,...); -char *ECPGerrmsg(void); +char *ECPGerrmsg(void); /* print an error message */ void sqlprint(void); |