The R Project SVN R

Rev

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

Rev 42308 Rev 44142
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-5 The R Development Core Team.
3
 *  Copyright (C) 2001-8 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 30... Line 30...
30
     * Has the device received base output?
30
     * Has the device received base output?
31
     */
31
     */
32
    Rboolean baseDevice;  
32
    Rboolean baseDevice;  
33
} baseSystemState;
33
} baseSystemState;
34
 
34
 
35
void registerBase();
35
void registerBase(); /* used in devices.c */
36
 
36
 
37
Rboolean Rf_baseDevice(DevDesc *dd);
37
Rboolean Rf_baseDevice(DevDesc *dd); /* unused */
38
void Rf_setBaseDevice(Rboolean val, DevDesc *dd);
38
void Rf_setBaseDevice(Rboolean val, DevDesc *dd); /* used in graphics.c */
-
 
39
int baseRegisterIndex; /* used in devices.c */
39
 
40
 
40
#endif /* R_GRAPHICSBASE_ */
41
#endif /* R_GRAPHICSBASE_ */