mirror of
https://github.com/php-win-ext/pecl-processing-rrd.git
synced 2026-03-24 00:52:13 +01:00
git-svn-id: http://svn.php.net/repository/pecl/rrd/trunk@336933 c90b9560-bf6c-de11-be94-00142212c4b1
18 lines
462 B
C
18 lines
462 B
C
/**
|
|
* PHP bindings to the rrdtool
|
|
*
|
|
* This source file is subject to the BSD license that is bundled
|
|
* with this package in the file LICENSE.
|
|
* ---------------------------------------------------------------
|
|
* Author: Miroslav Kubelik <koubel@php.net>
|
|
* ---------------------------------------------------------------
|
|
*/
|
|
|
|
#ifndef RRD_GRAPH_H
|
|
#define RRD_GRAPH_H
|
|
|
|
extern void rrd_graph_minit();
|
|
extern PHP_FUNCTION(rrd_graph);
|
|
|
|
#endif /* RRD_GRAPH_H */
|