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