Home
last modified time | relevance | path

Searched refs:odbc_result_object_handlers (Results 1 – 1 of 1) sorted by relevance

/php-src/ext/odbc/
H A Dphp_odbc.c70 static zend_object_handlers odbc_connection_object_handlers, odbc_result_object_handlers; variable
525 odbc_result_ce->default_object_handlers = &odbc_result_object_handlers; in PHP_MINIT_FUNCTION()
527 memcpy(&odbc_result_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in PHP_MINIT_FUNCTION()
528 odbc_result_object_handlers.offset = XtOffsetOf(odbc_result, std); in PHP_MINIT_FUNCTION()
529 odbc_result_object_handlers.free_obj = odbc_result_free_obj; in PHP_MINIT_FUNCTION()
530 odbc_result_object_handlers.get_constructor = odbc_result_get_constructor; in PHP_MINIT_FUNCTION()
531 odbc_result_object_handlers.clone_obj = NULL; in PHP_MINIT_FUNCTION()
532 odbc_result_object_handlers.cast_object = odbc_result_cast_object; in PHP_MINIT_FUNCTION()
533 odbc_result_object_handlers.compare = zend_objects_not_comparable; in PHP_MINIT_FUNCTION()

Completed in 19 milliseconds