diff options
author | SVN Migration <svn@php.net> | 2004-01-25 12:03:25 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2004-01-25 12:03:25 +0000 |
commit | 22476b36ce621bdd115493bab84cbe706e422a7c (patch) | |
tree | 1124d1c5af68860a78c2252bb0dac63c9f18156e /ext/ingres_ii/ii.h | |
parent | eb7aca4ea896b09cb9afc2466a46f4720acc4a4e (diff) | |
download | php-git-php_ibase_before_split.tar.gz |
This commit was manufactured by cvs2svn to create tagphp_ibase_before_split
'php_ibase_before_split'.
Diffstat (limited to 'ext/ingres_ii/ii.h')
-rw-r--r-- | ext/ingres_ii/ii.h | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/ext/ingres_ii/ii.h b/ext/ingres_ii/ii.h deleted file mode 100644 index aa097cdc23..0000000000 --- a/ext/ingres_ii/ii.h +++ /dev/null @@ -1,65 +0,0 @@ -/* - +----------------------------------------------------------------------+ - | PHP Version 5 | - +----------------------------------------------------------------------+ - | Copyright (c) 1997-2004 The PHP Group | - +----------------------------------------------------------------------+ - | This source file is subject to version 3.0 of the PHP license, | - | that is bundled with this package in the file LICENSE, and is | - | available through the world-wide-web at the following url: | - | http://www.php.net/license/3_0.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. | - +----------------------------------------------------------------------+ - | Contributed by ECL IP'S Software & Services | - | http://www.eclips-software.com | - | mailto://idev@eclips-software.com | - | Author: David Hénot <henot@php.net> | - +----------------------------------------------------------------------+ - */ - -/* $Id$ */ - -#ifndef II_H -#define II_H - -#if HAVE_II -#include "php_ii.h" -#include "iiapi.h" - -typedef struct _II_LINK { - int autocommit; - II_PTR connHandle; - II_PTR tranHandle; - II_PTR stmtHandle; - II_LONG fieldCount; - IIAPI_DESCRIPTOR *descriptor; -} II_LINK; - -static int ii_sync(IIAPI_GENPARM *genParm); -static int ii_success(IIAPI_GENPARM *genParm); -#define II_FAIL 0 -#define II_OK 1 -#define II_NO_DATA 2 -static int _close_statement(II_LINK *link); -static int _rollback_transaction(II_LINK *link TSRMLS_DC); -static void _close_ii_link(II_LINK *link TSRMLS_DC); -static void _close_ii_plink(zend_rsrc_list_entry *link TSRMLS_DC); -static int php_ii_get_default_link(INTERNAL_FUNCTION_PARAMETERS); -static void php_ii_set_default_link(int id TSRMLS_DC); -static void php_ii_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent); -static char *php_ii_field_name(II_LINK *ii_link, int index TSRMLS_DC); -static void php_ii_field_info(INTERNAL_FUNCTION_PARAMETERS, int info_type); -static void php_ii_fetch(INTERNAL_FUNCTION_PARAMETERS, II_LINK *ii_link, int result_type); - -#endif /* HAVE_II */ -#endif /* II_H */ - - -/* - * Local variables: - * tab-width: 4 - * c-basic-offset: 4 - * End: - */ |