diff options
author | Michael Meskes <meskes@postgresql.org> | 2007-10-03 11:11:12 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2007-10-03 11:11:12 +0000 |
commit | 7793c6ecca0560de152ec8dc0dea22d22c5d59af (patch) | |
tree | 6eeeda7309747308a3a1dd4e586e0fc95c1ef624 /src/interfaces/ecpg/include/ecpglib.h | |
parent | c4a6c2f87166c70cd773c5521d4ff104ddec9e61 (diff) | |
download | postgresql-7793c6ecca0560de152ec8dc0dea22d22c5d59af.tar.gz postgresql-7793c6ecca0560de152ec8dc0dea22d22c5d59af.zip |
Cleaned up ecpglib and renamed functions that do not need to be exported.
Created export list for ecpglib.
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 7a24618c838..ac7cd4f19e6 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -1,7 +1,7 @@ /* * this is a small part of c.h since we don't want to leak all postgres * definitions into ecpg programs - * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.72 2007/09/26 10:57:00 meskes Exp $ + * $PostgreSQL: pgsql/src/interfaces/ecpg/include/ecpglib.h,v 1.73 2007/10/03 11:11:12 meskes Exp $ */ #ifndef _ECPGLIB_H @@ -38,7 +38,6 @@ extern "C" { #endif -void ECPGinit_sqlca(struct sqlca_t * sqlca); void ECPGdebug(int, FILE *); bool ECPGstatus(int, const char *); bool ECPGsetcommit(int, const char *, const char *); @@ -48,12 +47,10 @@ bool ECPGdo(const int, const int, const int, const char *, const char, const en bool ECPGtrans(int, const char *, const char *); bool ECPGdisconnect(int, const char *); bool ECPGprepare(int, const char *, const int, const char *, const char *); -bool ECPGauto_prepare(int, const char *, const int, char **, const char *); bool ECPGdeallocate(int, int, const char *connection_name, const char *name); bool ECPGdeallocate_all(int, int, const char *connection_name); char *ECPGprepared_statement(const char *connection_name, const char *name, int); -void ECPGlog(const char *format,...); char *ECPGerrmsg(void); /* print an error message */ |