1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#ifndef _PERL_GNUMERIC_H
#define _PERL_GNUMERIC_H
/*
* Interface to Gnumeric internal functions.
*/
#ifdef __cplusplus
extern "C" {
#endif
#include "EXTERN.h"
#include "perl.h"
#undef _
#undef dirty
#include "XSUB.h"
#ifdef __cplusplus
}
#endif
#ifdef PerlIO
typedef int SysRet;
typedef PerlIO * InputStream;
typedef PerlIO * OutputStream;
#else
typedef int SysRet;
typedef FILE * InputStream;
typedef FILE * OutputStream;
#endif
#include <gnumeric.h>
#include <expr.h>
#include <func.h>
#include <value.h>
SV* value2perl(const GnmValue *v);
GnmValue* perl2value(SV *sv);
GnmValue* marshal_func (GnmFuncEvalInfo *ei, GnmValue *argv[]);
#endif /* _PERL_GNUMERIC_H */
|