diff options
author | Georg Richter <georg@php.net> | 2004-03-10 09:50:05 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2004-03-10 09:50:05 +0000 |
commit | a3bd712b7805e19446ced7c951959ee0c08c259f (patch) | |
tree | 194c496c804d56ec0253e4bee0dd1631e13ff53a /ext/mysqli/php_mysqli.h | |
parent | 25adeaf77c13b7081b7785ee3ada28f5561099dc (diff) | |
download | php-git-a3bd712b7805e19446ced7c951959ee0c08c259f.tar.gz |
added new function mysql_stmt_free_result
Diffstat (limited to 'ext/mysqli/php_mysqli.h')
-rw-r--r-- | ext/mysqli/php_mysqli.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/mysqli/php_mysqli.h b/ext/mysqli/php_mysqli.h index 7d1032ec51..a19c51eaa1 100644 --- a/ext/mysqli/php_mysqli.h +++ b/ext/mysqli/php_mysqli.h @@ -347,6 +347,9 @@ PHP_FUNCTION(mysqli_stmt_close); PHP_FUNCTION(mysqli_stmt_data_seek); PHP_FUNCTION(mysqli_stmt_errno); PHP_FUNCTION(mysqli_stmt_error); +#ifndef HAVE_MYSQLI_OLDAPI +PHP_FUNCTION(mysqli_stmt_free_result); +#endif PHP_FUNCTION(mysqli_stmt_num_rows); #if MYSQL_VERSION_ID >= 40101 PHP_FUNCTION(mysqli_stmt_sqlstate); |