File: perl-gnumeric.h

package info (click to toggle)
gnumeric 1.12.55-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 112,588 kB
  • sloc: ansic: 295,698; xml: 56,363; perl: 6,579; sh: 5,288; makefile: 2,960; yacc: 1,341; python: 389
file content (41 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (4)
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
40
41
#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);
#if 0
GnmValue* marshal_func (GnmFuncEvalInfo *ei, GnmValue *argv[]);
#endif

#endif /* _PERL_GNUMERIC_H */