diff options
Diffstat (limited to 'ext/odbc/php_odbc.h')
-rw-r--r-- | ext/odbc/php_odbc.h | 111 |
1 files changed, 0 insertions, 111 deletions
diff --git a/ext/odbc/php_odbc.h b/ext/odbc/php_odbc.h deleted file mode 100644 index ffda57f74e..0000000000 --- a/ext/odbc/php_odbc.h +++ /dev/null @@ -1,111 +0,0 @@ -/* - +----------------------------------------------------------------------+ - | PHP Version 4 | - +----------------------------------------------------------------------+ - | Copyright (c) 1997-2003 The PHP Group | - +----------------------------------------------------------------------+ - | This source file is subject to version 2.02 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available at through the world-wide-web at | - | http://www.php.net/license/2_02.txt. | - | If you did not receive a copy of the PHP license and are unable to | - | obtain it through the world-wide-web, please send a note to | - | license@php.net so we can mail you a copy immediately. | - +----------------------------------------------------------------------+ - | Authors: Stig Sæther Bakken <ssb@fast.no> | - | Andreas Karajannis <Andreas.Karajannis@gmd.de> | - | Kevin N. Shallow <kshallow@tampabay.rr.com> Birdstep Support | - +----------------------------------------------------------------------+ -*/ - -/* $Id$ */ - -#ifndef PHP_ODBC_H -#define PHP_ODBC_H - -#if HAVE_UODBC -#define ODBCVER 0x0250 - -#ifdef ZTS -#include "TSRM.h" -#endif - -extern zend_module_entry odbc_module_entry; -#define odbc_module_ptr &odbc_module_entry - -/* user functions */ -PHP_MINIT_FUNCTION(odbc); -PHP_MSHUTDOWN_FUNCTION(odbc); -PHP_RINIT_FUNCTION(odbc); -PHP_RSHUTDOWN_FUNCTION(odbc); -PHP_MINFO_FUNCTION(odbc); - -PHP_FUNCTION(odbc_error); -PHP_FUNCTION(odbc_errormsg); -PHP_FUNCTION(odbc_setoption); -PHP_FUNCTION(odbc_autocommit); -PHP_FUNCTION(odbc_close); -PHP_FUNCTION(odbc_close_all); -PHP_FUNCTION(odbc_commit); -PHP_FUNCTION(odbc_connect); -PHP_FUNCTION(odbc_pconnect); -PHP_FUNCTION(odbc_cursor); -PHP_FUNCTION(odbc_data_source); -PHP_FUNCTION(odbc_do); -PHP_FUNCTION(odbc_exec); -PHP_FUNCTION(odbc_execute); -#if defined(HAVE_DBMAKER) || defined(PHP_WIN32) -PHP_FUNCTION(odbc_fetch_array); -PHP_FUNCTION(odbc_fetch_object); -#endif -PHP_FUNCTION(odbc_fetch_into); -PHP_FUNCTION(odbc_fetch_row); -PHP_FUNCTION(odbc_field_len); -PHP_FUNCTION(odbc_field_scale); -PHP_FUNCTION(odbc_field_name); -PHP_FUNCTION(odbc_field_type); -PHP_FUNCTION(odbc_field_num); -PHP_FUNCTION(odbc_free_result); -#if !defined(HAVE_SOLID) && !defined(HAVE_SOLID_30) -PHP_FUNCTION(odbc_next_result); -#endif -PHP_FUNCTION(odbc_num_fields); -PHP_FUNCTION(odbc_num_rows); -PHP_FUNCTION(odbc_prepare); -PHP_FUNCTION(odbc_result); -PHP_FUNCTION(odbc_result_all); -PHP_FUNCTION(odbc_rollback); -PHP_FUNCTION(odbc_binmode); -PHP_FUNCTION(odbc_longreadlen); -PHP_FUNCTION(odbc_tables); -PHP_FUNCTION(odbc_columns); -#if !defined(HAVE_DBMAKER) && !defined(HAVE_SOLID) && !defined(HAVE_SOLID_35) /* not supported now */ -PHP_FUNCTION(odbc_columnprivileges); -PHP_FUNCTION(odbc_tableprivileges); -#endif -#if !defined(HAVE_SOLID) || !defined(HAVE_SOLID_35) /* not supported */ -PHP_FUNCTION(odbc_foreignkeys); -PHP_FUNCTION(odbc_procedures); -PHP_FUNCTION(odbc_procedurecolumns); -#endif -PHP_FUNCTION(odbc_gettypeinfo); -PHP_FUNCTION(odbc_primarykeys); -PHP_FUNCTION(odbc_specialcolumns); -PHP_FUNCTION(odbc_statistics); - -#else - -#define odbc_module_ptr NULL - -#endif /* HAVE_UODBC */ - -#define phpext_odbc_ptr odbc_module_ptr - -#endif /* PHP_ODBC_H */ - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ |