The R Project SVN R

Rev

Rev 59039 | Rev 71379 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 59039 Rev 60253
Line 15... Line 15...
15
 *  You should have received a copy of the GNU General Public License
15
 *  You should have received a copy of the GNU General Public License
16
 *  along with this program; if not, a copy is available at
16
 *  along with this program; if not, a copy is available at
17
 *  http://www.r-project.org/Licenses/
17
 *  http://www.r-project.org/Licenses/
18
 */
18
 */
19
 
19
 
-
 
20
/*
-
 
21
  C functions to be called from alternative front-ends.
-
 
22
 
-
 
23
  Part of the API for such front-ends but not for packages.
-
 
24
*/
-
 
25
 
20
#ifndef R_EXT_RSTARTUP_H_
26
#ifndef R_EXT_RSTARTUP_H_
21
#define R_EXT_RSTARTUP_H_
27
#define R_EXT_RSTARTUP_H_
22
 
28
 
23
#include <R_ext/Boolean.h>	/* TRUE/FALSE */
29
#include <R_ext/Boolean.h>	/* TRUE/FALSE */
24
 
30
 
Line 90... Line 96...
90
void R_SizeFromEnv(Rstart);
96
void R_SizeFromEnv(Rstart);
91
void R_common_command_line(int *, char **, Rstart);
97
void R_common_command_line(int *, char **, Rstart);
92
 
98
 
93
void R_set_command_line_arguments(int argc, char **argv);
99
void R_set_command_line_arguments(int argc, char **argv);
94
 
100
 
95
void setup_Rmainloop(void);
101
void setup_Rmainloop(void); // also in Rembedded.h
96
 
102
 
97
#ifdef __cplusplus
103
#ifdef __cplusplus
98
}
104
}
99
#endif
105
#endif
100
 
106