2015-01-03 17:22:58 +08:00
|
|
|
/*
|
2003-02-01 09:49:15 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2019-01-30 17:23:29 +08:00
|
|
|
| Copyright (c) Zend Technologies Ltd. (http://www.zend.com) |
|
2003-02-01 09:49:15 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2003-02-01 09:49:15 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
|
|
|
| If you did not receive a copy of the Zend license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@zend.com so we can mail you a copy immediately. |
|
|
|
|
+----------------------------------------------------------------------+
|
2018-11-01 23:20:07 +08:00
|
|
|
| Authors: Andi Gutmans <andi@php.net> |
|
|
|
|
| Zeev Suraski <zeev@php.net> |
|
2003-02-01 09:49:15 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2001-08-07 11:17:33 +08:00
|
|
|
#ifndef ZEND_OBJECTS_H
|
|
|
|
#define ZEND_OBJECTS_H
|
|
|
|
|
2023-01-16 19:22:54 +08:00
|
|
|
#include "zend.h"
|
2001-08-07 11:17:33 +08:00
|
|
|
|
2004-02-19 06:44:40 +08:00
|
|
|
BEGIN_EXTERN_C()
|
2017-12-14 18:50:39 +08:00
|
|
|
ZEND_API void ZEND_FASTCALL zend_object_std_init(zend_object *object, zend_class_entry *ce);
|
|
|
|
ZEND_API zend_object* ZEND_FASTCALL zend_objects_new(zend_class_entry *ce);
|
|
|
|
ZEND_API void ZEND_FASTCALL zend_objects_clone_members(zend_object *new_object, zend_object *old_object);
|
|
|
|
|
2014-12-14 06:06:14 +08:00
|
|
|
ZEND_API void zend_object_std_dtor(zend_object *object);
|
|
|
|
ZEND_API void zend_objects_destroy_object(zend_object *object);
|
2019-01-31 23:47:58 +08:00
|
|
|
ZEND_API zend_object *zend_objects_clone_obj(zend_object *object);
|
2004-02-19 06:44:40 +08:00
|
|
|
END_EXTERN_C()
|
2002-02-07 22:08:43 +08:00
|
|
|
|
2001-11-05 08:17:28 +08:00
|
|
|
#endif /* ZEND_OBJECTS_H */
|