mirror of
https://github.com/php/pecl-processing-rrd.git
synced 2026-03-23 23:22:21 +01:00
As of PHP 7.4.0, fallback declarations of `uint` and `ulong` have been removed. These types are not declared on Windows, and maybe on macOS. Thus, we replace their usage with `unsigned` and `zend_ulong`, respectively.
21 lines
606 B
C
21 lines
606 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_INFO_H
|
|
#define RRD_INFO_H
|
|
|
|
extern PHP_FUNCTION(rrd_info);
|
|
|
|
/* necessary, because rrd_info_t definition is needed for function definition */
|
|
#include <rrd.h>
|
|
extern unsigned rrd_info_toarray(const rrd_info_t *rrd_info_data, zval *array);
|
|
|
|
#endif /* RRD_INFO_H */
|