📄 php_rrdtool.h
字号:
/* * php_rrdtool.h * * php4 rrdtool module. * * Joe Miller, <joeym@inficad.com>,<joeym@ibizcorp.com>, 7/19/2000 * * $Id: php_rrdtool.h,v 1.1.1.1 2002/02/26 10:21:20 oetiker Exp $ * */#ifndef _PHP4_RRDTOOL_H#define _PHP4_RRDTOOL_H#if COMPILE_DL_RRDTOOL#undef HAVE_RRDTOOL#define HAVE_RRDTOOL 1#endif#ifndef DLEXPORT#define DLEXPORT#endif#if HAVE_RRDTOOLPHP_MINFO_FUNCTION(rrdtool);extern zend_module_entry rrdtool_module_entry;#define rrdtool_module_ptr &rrdtool_module_entry#define phpext_rrdtool_ptr rrdtool_module_ptrPHP_FUNCTION(rrd_error);PHP_FUNCTION(rrd_clear_error);PHP_FUNCTION(rrd_update);PHP_FUNCTION(rrd_last);PHP_FUNCTION(rrd_create);PHP_FUNCTION(rrd_graph);PHP_FUNCTION(rrd_fetch);#else#define phpext_rrdtool_ptr NULL#endif /* HAVE_RRDTOOL */#endif /* _PHP4_RRDTOOL_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -