The R Project SVN R

Rev

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

Rev 52406 Rev 55828
Line 1... Line 1...
1
/*
1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
2
 *  R : A Computer Language for Statistical Data Analysis
3
 *  Copyright (C) 2001-8 The R Development Core Team.
3
 *  Copyright (C) 2001-11 The R Development Core Team.
4
 *
4
 *
5
 *  This program is free software; you can redistribute it and/or modify
5
 *  This program is free software; you can redistribute it and/or modify
6
 *  it under the terms of the GNU Lesser General Public License as published by
6
 *  it under the terms of the GNU Lesser General Public License as published by
7
 *  the Free Software Foundation; either version 2.1 of the License, or
7
 *  the Free Software Foundation; either version 2.1 of the License, or
8
 *  (at your option) any later version.
8
 *  (at your option) any later version.
Line 51... Line 51...
51
 *             Add 'ask' to GEDevDesc.
51
 *             Add 'ask' to GEDevDesc.
52
 * Version 6:  Add dev_Raster() and dev_Cap()
52
 * Version 6:  Add dev_Raster() and dev_Cap()
53
 * Version 7:  Change graphics event handling, adding eventEnv and eventHelper() 
53
 * Version 7:  Change graphics event handling, adding eventEnv and eventHelper() 
54
 *	       to DevDesc.
54
 *	       to DevDesc.
55
 * Version 8:  Add dev_Path()
55
 * Version 8:  Add dev_Path()
-
 
56
 * Version 9:  Add dev_HoldFlush()
56
 */
57
 */
57
 
58
 
58
#define R_GE_version 8
59
#define R_GE_version 9
59
 
60
 
60
int R_GE_getVersion(void);
61
int R_GE_getVersion(void);
61
 
62
 
62
void R_GE_checkVersionOrDie(int version);
63
void R_GE_checkVersionOrDie(int version);
63
 
64