php-src/ext/ingres_ii/php_ii.h
Hénot David 15ff1d211b Added extension ii for Ingres II native support.
@- Added extension ii for Ingres II native support. See README in ext/ii
@  directory. (David H)
2000-07-17 21:29:30 +00:00

107 lines
2.8 KiB
C

/*
+----------------------------------------------------------------------+
| PHP version 4.0 |
+----------------------------------------------------------------------+
| Copyright (c) 1997, 1998, 1999, 2000 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. |
+----------------------------------------------------------------------+
| Author: David Hénot <henot@php.net> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#ifndef PHP_II_H
#define PHP_II_H
#if HAVE_II
extern zend_module_entry ii_module_entry;
#define phpext_ii_ptr &ii_module_entry
#ifdef PHP_WIN32
#define PHP_II_API __declspec(dllexport)
#else
#define PHP_II_API
#endif
PHP_MINIT_FUNCTION(ii);
PHP_MSHUTDOWN_FUNCTION(ii);
PHP_RINIT_FUNCTION(ii);
PHP_RSHUTDOWN_FUNCTION(ii);
PHP_MINFO_FUNCTION(ii);
PHP_FUNCTION(ii_connect);
PHP_FUNCTION(ii_pconnect);
PHP_FUNCTION(ii_close);
PHP_FUNCTION(ii_query);
PHP_FUNCTION(ii_num_rows);
PHP_FUNCTION(ii_num_fields);
PHP_FUNCTION(ii_field_name);
PHP_FUNCTION(ii_field_type);
PHP_FUNCTION(ii_field_nullable);
PHP_FUNCTION(ii_field_length);
PHP_FUNCTION(ii_field_precision);
PHP_FUNCTION(ii_field_scale);
PHP_FUNCTION(ii_fetch_array);
PHP_FUNCTION(ii_fetch_row);
PHP_FUNCTION(ii_fetch_object);
PHP_FUNCTION(ii_rollback);
PHP_FUNCTION(ii_commit);
ZEND_BEGIN_MODULE_GLOBALS(ii)
long allow_persistent;
long max_persistent;
long max_links;
char *default_database;
char *default_user;
char *default_password;
long num_persistent;
long num_links;
long default_link;
ZEND_END_MODULE_GLOBALS(ii)
#define II_ASSOC (1<<0)
#define II_NUM (1<<1)
#define II_BOTH (II_ASSOC|II_NUM)
#ifdef ZTS
#define IILS_D php_ii_globals *ii_globals
#define IILS_DC , IILS_D
#define IILS_C ii_globals
#define IILS_CC , IILS_C
#define IIG(v) (ii_globals->v)
#define IILS_FETCH() php_ii_globals *ii_globals = ts_resource(ii_globals_id)
#else
#define IILS_D
#define IILS_DC
#define IILS_C
#define IILS_CC
#define IIG(v) (ii_globals.v)
#define IILS_FETCH()
#endif
#else
#define phpext_ii_ptr NULL
#endif
#endif /* PHP_II_H */
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
*/