summaryrefslogtreecommitdiff
path: root/ext/ovrimos/php_ovrimos.h
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2001-08-13 16:13:26 +0000
committerSVN Migration <svn@php.net>2001-08-13 16:13:26 +0000
commite9e6c46b503cb7335e517d422a6d34f825db2a9d (patch)
tree4e7367e55215f4f8241cf587723d0c139e6ecc4b /ext/ovrimos/php_ovrimos.h
parent9a3d4e736c974213e2c0862d420907604e22e5d5 (diff)
downloadphp-git-e9e6c46b503cb7335e517d422a6d34f825db2a9d.tar.gz
This commit was manufactured by cvs2svn to create branch 'unlabeled-1.67.2'.
Diffstat (limited to 'ext/ovrimos/php_ovrimos.h')
-rw-r--r--ext/ovrimos/php_ovrimos.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/ext/ovrimos/php_ovrimos.h b/ext/ovrimos/php_ovrimos.h
deleted file mode 100644
index b3e1336046..0000000000
--- a/ext/ovrimos/php_ovrimos.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef PHP_OVRIMOS_H
-#define PHP_OVRIMOS_H
-
-#if HAVE_LIBSQLCLI
-
-#if PHP_API_VERSION < 19990421
-#define zend_module_entry zend_module_entry
-#include "zend_modules.h"
-#include "internal_functions.h"
-#endif
-
-extern zend_module_entry ovrimos_module_entry;
-#define ovrimos_module_ptr &ovrimos_module_entry
-
-PHP_FUNCTION(ovrimos_connect);
-PHP_FUNCTION(ovrimos_close);
-PHP_FUNCTION(ovrimos_longreadlen);
-PHP_FUNCTION(ovrimos_prepare);
-PHP_FUNCTION(ovrimos_execute);
-PHP_FUNCTION(ovrimos_cursor);
-PHP_FUNCTION(ovrimos_exec);
-PHP_FUNCTION(ovrimos_fetch_into);
-PHP_FUNCTION(ovrimos_fetch_row);
-PHP_FUNCTION(ovrimos_result);
-PHP_FUNCTION(ovrimos_result_all);
-PHP_FUNCTION(ovrimos_free_result);
-PHP_FUNCTION(ovrimos_num_rows);
-PHP_FUNCTION(ovrimos_num_fields);
-PHP_FUNCTION(ovrimos_field_name);
-PHP_FUNCTION(ovrimos_field_type);
-PHP_FUNCTION(ovrimos_field_len);
-PHP_FUNCTION(ovrimos_field_num);
-/*PHP_FUNCTION(ovrimos_autocommit);*/
-PHP_FUNCTION(ovrimos_commit);
-PHP_FUNCTION(ovrimos_rollback);
-/*PHP_FUNCTION(ovrimos_setoption);*/
-
-#else
-#define ovrimos_module_ptr NULL
-#endif
-
-#define phpext_ovrimos_ptr ovrimos_module_ptr
-
-#endif