From: oetiker Date: Tue, 25 May 2004 21:06:59 +0000 (+0000) Subject: added dump and restore ... Mike Schilli X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=59b2aeb768d80978ebee2f3cdc5cb1a5411c2a9b added dump and restore ... Mike Schilli git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@271 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/bindings/perl-shared/RRDs.xs b/bindings/perl-shared/RRDs.xs index bf108e3..28a6bde 100644 --- a/bindings/perl-shared/RRDs.xs +++ b/bindings/perl-shared/RRDs.xs @@ -382,3 +382,27 @@ rrd_updatev(...) OUTPUT: RETVAL +int +rrd_dump(...) + PROTOTYPE: @ + PREINIT: + int i; + char **argv; + CODE: + rrdcode(rrd_dump); + RETVAL = 1; + OUTPUT: + RETVAL + +int +rrd_restore(...) + PROTOTYPE: @ + PREINIT: + int i; + char **argv; + CODE: + rrdcode(rrd_restore); + RETVAL = 1; + OUTPUT: + RETVAL +