diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-07 14:25:10 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-07 14:25:10 +0000 |
commit | 8e29c1e9eec1a94ef80628544760e0b51b78cb0a (patch) | |
tree | f5dc5a59325195c7c5ffe8d242c3718949bf9b35 /ext/dbplus | |
parent | d95a4e2c19d1b9c791efa361648606247637e768 (diff) | |
download | php-git-8e29c1e9eec1a94ef80628544760e0b51b78cb0a.tar.gz |
old stuff removed
Diffstat (limited to 'ext/dbplus')
-rw-r--r-- | ext/dbplus/dbplus.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/ext/dbplus/dbplus.c b/ext/dbplus/dbplus.c index 9f259ade08..5b225b52b6 100644 --- a/ext/dbplus/dbplus.c +++ b/ext/dbplus/dbplus.c @@ -239,51 +239,6 @@ PHP_MINFO_FUNCTION(dbplus) /* }}} */ -#if 0 -/* {{{ proto int dbplus_open(string name, int writing, int searchpath) - - */ -PHP_FUNCTION(dbplus_open) -{ - relf *conn; - - zval **name, **writing, **searchpath; - if (ZEND_NUM_ARGS() != 3 || zend_get_parameters_ex(3, &name, &writing, &searchpath) == FAILURE){ - WRONG_PARAM_COUNT; - } - - convert_to_string_ex(name); - convert_to_long_ex(writing); - convert_to_long_ex(searchpath); - - conn = cdb_open(Z_STRVAL_PP(name), Z_LVAL_PP(writing), Z_LVAL_PP(searchpath)); - if(conn == NULL) { - /* TODO error handling */ - RETURN_FALSE; - } - - ZEND_REGISTER_RESOURCE(return_value, conn, le_dbplus); -} - -/* }}} */ - -/* {{{ proto void dbplus_close(int conn) - */ -PHP_FUNCTION(dbplus_close) -{ - zval **conn; - if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &conn) == FAILURE){ - WRONG_PARAM_COUNT; - } - - convert_to_long_ex(conn); - - /* TODO resource type check */ - - zend_list_delete(Z_LVAL_PP(conn)); -} -/* }}} */ -#endif /* * Local variables: |