Skip to content

Commit

Permalink
Revert "Change return type of dbd_st_execute, dbd_st_rows, and dbd_db…
Browse files Browse the repository at this point in the history
…_do4 from int to IV"

This reverts commit 7b5a1d8.
  • Loading branch information
timbunce committed Jul 21, 2015
1 parent db4daeb commit 34a6876
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbd_xsh.h
Expand Up @@ -27,7 +27,7 @@ int dbd_db_login _((SV *dbh, imp_dbh_t *imp_dbh, char *dbname, char *uid,
/* Note: interface of dbd_db_do changed in v1.33 */
/* Old prototype: dbd_db_do _((SV *sv, char *statement)); */
/* dbd_db_do: optional: defined by a driver if the DBI default version is too slow */
IV dbd_db_do4 _((SV *dbh, imp_dbh_t *imp_dbh, char *statement, SV *params));
int dbd_db_do4 _((SV *dbh, imp_dbh_t *imp_dbh, char *statement, SV *params));
int dbd_db_commit _((SV *dbh, imp_dbh_t *imp_dbh));
int dbd_db_rollback _((SV *dbh, imp_dbh_t *imp_dbh));
int dbd_db_disconnect _((SV *dbh, imp_dbh_t *imp_dbh));
Expand All @@ -39,8 +39,8 @@ AV *dbd_db_data_sources _((SV *dbh, imp_dbh_t *imp_dbh, SV *attr));

int dbd_st_prepare _((SV *sth, imp_sth_t *imp_sth, char *statement, SV *attribs));
int dbd_st_prepare_sv _((SV *sth, imp_sth_t *imp_sth, SV *statement, SV *attribs));
IV dbd_st_rows _((SV *sth, imp_sth_t *imp_sth));
IV dbd_st_execute _((SV *sth, imp_sth_t *imp_sth));
int dbd_st_rows _((SV *sth, imp_sth_t *imp_sth));
int dbd_st_execute _((SV *sth, imp_sth_t *imp_sth));
AV *dbd_st_fetch _((SV *sth, imp_sth_t *imp_sth));
int dbd_st_finish3 _((SV *sth, imp_sth_t *imp_sth, int from_destroy));
int dbd_st_finish _((SV *sth, imp_sth_t *imp_sth)); /* deprecated */
Expand Down

0 comments on commit 34a6876

Please sign in to comment.