diff options
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 6145e79cb4d..0bcaac1a86e 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -48,12 +48,12 @@ bool ECPGstatus(int, const char *); bool ECPGsetcommit(int, const char *, const char *); bool ECPGsetconn(int, const char *); bool ECPGconnect(int, int, const char *, const char *, const char *, const char *, int); -bool ECPGdo(int, int, int, const char *, char *,...); +bool ECPGdo(int, int, int, const char *, const char *,...); bool ECPGtrans(int, const char *, const char *); bool ECPGdisconnect(int, const char *); -bool ECPGprepare(int, char *, char *); -bool ECPGdeallocate(int, int, char *); -bool ECPGdeallocate_one(int, char *); +bool ECPGprepare(int, const char *, const char *); +bool ECPGdeallocate(int, int, const char *); +bool ECPGdeallocate_one(int, const char *); bool ECPGdeallocate_all(int); char *ECPGprepared_statement(const char *); @@ -75,10 +75,10 @@ bool ECPGdeallocate_desc(int line, const char *name); bool ECPGallocate_desc(int line, const char *name); void ECPGraise(int line, int code, const char *sqlstate, const char *str); void ECPGraise_backend(int line, PGresult *result, PGconn *conn, int compat); -bool ECPGget_desc_header(int, char *, int *); -bool ECPGget_desc(int, char *, int,...); -bool ECPGset_desc_header(int, char *, int); -bool ECPGset_desc(int, char *, int,...); +bool ECPGget_desc_header(int, const char *, int *); +bool ECPGget_desc(int, const char *, int,...); +bool ECPGset_desc_header(int, const char *, int); +bool ECPGset_desc(int, const char *, int,...); void ECPGset_noind_null(enum ECPGttype, void *); bool ECPGis_noind_null(enum ECPGttype, void *); |