Arquivos
hhvm/hphp/runtime/ext/ext_reflection.h
T
Paul Tarjan 0335e335b7 build setAccessible
This implementation feels a bit haphazard with all the forces in the `o_*`. Is this stuff all changing dario?
2013-07-18 17:28:42 -07:00

50 linhas
2.4 KiB
C++

/*
+----------------------------------------------------------------------+
| HipHop for PHP |
+----------------------------------------------------------------------+
| Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
| Copyright (c) 1997-2010 The PHP Group |
+----------------------------------------------------------------------+
| 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. |
+----------------------------------------------------------------------+
*/
#ifndef incl_HPHP_EXT_REFLECTION_H_
#define incl_HPHP_EXT_REFLECTION_H_
// >>>>>> Generated by idl.php. Do NOT modify. <<<<<<
#include "hphp/runtime/base/base_includes.h"
namespace HPHP {
///////////////////////////////////////////////////////////////////////////////
Array f_hphp_get_extension_info(CStrRef name);
Array f_hphp_get_method_info(CVarRef cls, CVarRef name);
Array f_hphp_get_closure_info(CVarRef closure);
Variant f_hphp_get_class_constant(CVarRef cls, CVarRef name);
Array f_hphp_get_class_info(CVarRef name);
Array f_hphp_get_function_info(CStrRef name);
Variant f_hphp_invoke(CStrRef name, CArrRef params);
Variant f_hphp_invoke_method(CVarRef obj, CStrRef cls, CStrRef name, CArrRef params);
bool f_hphp_instanceof(CObjRef obj, CStrRef name);
Object f_hphp_create_object(CStrRef name, CArrRef params);
Object f_hphp_create_object_without_constructor(CStrRef name);
Variant f_hphp_get_property(CObjRef obj, CStrRef cls, CStrRef prop);
void f_hphp_set_property(CObjRef obj, CStrRef cls, CStrRef prop, CVarRef value);
Variant f_hphp_get_static_property(CStrRef cls, CStrRef prop, bool force);
void f_hphp_set_static_property(CStrRef cls, CStrRef prop, CVarRef value, bool force);
String f_hphp_get_original_class_name(CStrRef name);
bool f_hphp_scalar_typehints_enabled();
///////////////////////////////////////////////////////////////////////////////
}
#endif // incl_HPHP_EXT_REFLECTION_H_