The R Project SVN R

Rev

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

Rev 32205 Rev 34747
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-4 The R Development Core Team.
3
 *  Copyright (C) 2001-5 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 17... Line 17...
17
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
18
 */
19
 
19
 
20
/* Used by third-party graphics devices */
20
/* Used by third-party graphics devices */
21
 
21
 
-
 
22
#ifndef R_GRAPHICSDEVICE_H_
-
 
23
#define R_GRAPHICSDEVICE_H_
-
 
24
 
-
 
25
#ifdef __cplusplus
-
 
26
extern "C" {
-
 
27
#endif
-
 
28
 
22
/* New device driver structure
29
/* New device driver structure
23
 * NOTES:
30
 * NOTES:
24
 * 1. All locations and dimensions are in device coordinates.
31
 * 1. All locations and dimensions are in device coordinates.
25
 * 2. I found this comment in the doc for dev_Open -- looks nasty
32
 * 2. I found this comment in the doc for dev_Open -- looks nasty
26
 *    Any known instances of such a thing happening?  Should be
33
 *    Any known instances of such a thing happening?  Should be
Line 477... Line 484...
477
	/* the device description and freeing it in most cases	*/
484
	/* the device description and freeing it in most cases	*/
478
	/* but if the device driver freaks out it needs to do	*/
485
	/* but if the device driver freaks out it needs to do	*/
479
	/* the clean-up itself					*/
486
	/* the clean-up itself					*/
480
	/********************************************************/
487
	/********************************************************/
481
 
488
 
-
 
489
 
-
 
490
#ifdef __cplusplus
-
 
491
}
-
 
492
#endif
-
 
493
 
-
 
494
#endif /* R_GRAPHICSDEVICE_ */