2012-05-22 19:43:11 +02:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| PHP Version 5 |
|
|
|
|
+----------------------------------------------------------------------+
|
2012-05-28 05:10:49 +02:00
|
|
|
| Copyright (c) 1997-2012 The PHP Group |
|
2012-05-22 19:43:11 +02:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 3.01 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_01.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. |
|
|
|
|
+----------------------------------------------------------------------+
|
2012-05-28 05:10:49 +02:00
|
|
|
| Authors: Shuhei Tanuma <chobieeee@php.net> |
|
2012-05-22 19:43:11 +02:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "php_uv.h"
|
|
|
|
|
|
|
|
void php_uv_init(TSRMLS_D);
|
|
|
|
zend_class_entry *uv_class_entry;
|
|
|
|
|
2012-05-29 05:03:05 +02:00
|
|
|
/* TODO: will be add soon */
|
2012-05-22 19:43:11 +02:00
|
|
|
static zend_function_entry php_uv_methods[] = {
|
|
|
|
{NULL, NULL, NULL}
|
|
|
|
};
|
|
|
|
|
2012-05-23 06:35:28 +02:00
|
|
|
static int php_uv_class_init(TSRMLS_D)
|
2012-05-22 19:43:11 +02:00
|
|
|
{
|
|
|
|
zend_class_entry ce;
|
|
|
|
INIT_CLASS_ENTRY(ce, "UV", php_uv_methods);
|
|
|
|
uv_class_entry = zend_register_internal_class(&ce TSRMLS_CC);
|
|
|
|
//uv_class_entry->create_object = php_uv_new;
|
2012-05-23 06:35:28 +02:00
|
|
|
|
|
|
|
return 0;
|
2012-05-22 19:43:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void php_uv_init(TSRMLS_D)
|
|
|
|
{
|
|
|
|
php_uv_class_init(TSRMLS_C);
|
|
|
|
}
|