The R Project SVN R

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6098 pd 1
/*
2
 *  RProxy: Connector implementation between application and R language
13365 ripley 3
 *  Copyright (C) 1999--2001 Thomas Baier
26207 murdoch 4
 *
6098 pd 5
 *  This library is free software; you can redistribute it and/or
6
 *  modify it under the terms of the GNU Library General Public
7
 *  License as published by the Free Software Foundation; either
8
 *  version 2 of the License, or (at your option) any later version.
26207 murdoch 9
 *
6098 pd 10
 *  This library is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 *  Library General Public License for more details.
26207 murdoch 14
 *
6098 pd 15
 *  You should have received a copy of the GNU Library General Public
16
 *  License along with this library; if not, write to the Free
17
 *  Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18
 *  MA 02111-1307, USA
6994 pd 19
 *
26207 murdoch 20
 *  $Id: rproxy_impl.h,v 1.6 2003/09/13 15:14:09 murdoch Exp $
6098 pd 21
 */
22
 
23
#ifndef _RPROXY_IMPL_H_
24
#define _RPROXY_IMPL_H_
25
 
26
#include "bdx.h"
27
 
26207 murdoch 28
/* exported functions for implementation */
6098 pd 29
 
26207 murdoch 30
/* 00-02-18 | baier | init() now receives parameter-string */
13365 ripley 31
int R_Proxy_init (char const* pParameters);
6098 pd 32
int R_Proxy_evaluate (char const* pCmd,BDX_Data** pData);
33
int R_Proxy_evaluate_noreturn (char const* pCmd);
34
int R_Proxy_get_symbol (char const* pSymbol,BDX_Data** pData);
35
int R_Proxy_set_symbol (char const* pSymbol,BDX_Data const* pData);
36
int R_Proxy_term ();
37
 
38
#endif