diff options
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 9a5c2732d8f..c0603b2e7f5 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -5,11 +5,11 @@ extern "C" { #endif void ECPGdebug(int, FILE *); -bool ECPGconnect(const char *); +bool ECPGsetconn(int, const char *); +bool ECPGconnect(int, const char *, const char *, const char *, const char *); bool ECPGdo(int, char *,...); bool ECPGtrans(int, const char *); -bool ECPGfinish(void); -bool ECPGdisconnect(const char *); +bool ECPGdisconnect(int, const char *); void ECPGlog(const char *format,...); |