The R Project SVN R

Rev

Rev 38843 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 38843 Rev 38848
Line 1... Line 1...
1
#ifndef EMBEDDED_R_CALL_H
1
#ifndef EMBEDDED_R_CALL_H
2
#define EMBEDDED_R_CALL_H
2
#define EMBEDDED_R_CALL_H
3
 
3
 
4
#include <R.h>
4
#include <R.h>
5
#include <Rinternals.h>
5
#include <Rinternals.h>
6
#include <Rdevices.h> /* for KillAllDevices */
-
 
7
 
6
 
8
int eval_R_command(const char *funcName, int argc, char *argv[]);
7
int eval_R_command(const char *funcName, int argc, char *argv[]);
9
void init_R(int argc, char **argv);
8
void init_R(int argc, char **argv);
10
void end_R();
9
void end_R();
11
 
10