Rev 71657 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/** R : A Computer Language for Statistical Data Analysis* Copyright (C) 2001-2014 The R Core Team.** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation; either version 2 of the License, or* (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU Lesser General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program; if not, a copy is available at* https://www.R-project.org/Licenses/*//* Definitions for the X11 module. Not intended for end-user use */#ifndef R_X11_MODULE_H#define R_X11_MODULE_H#include <Rinternals.h>#include <Rconnections.h>typedef SEXP (*R_do_X11)(SEXP call, SEXP op, SEXP args, SEXP rho);typedef SEXP (*R_X11DataEntryRoutine)(SEXP call, SEXP op, SEXP args, SEXP rho);typedef SEXP (*R_X11DataViewer)(SEXP call, SEXP op, SEXP args, SEXP rho);typedef Rboolean (*R_GetX11ImageRoutine)(int d, void *pximage,int *pwidth, int *pheight);typedef int (*R_X11_access)(void);typedef Rboolean (*R_X11clp)(Rclpconn, char*);typedef const char * (*R_version_t)(void);typedef struct {R_do_X11 X11;R_do_X11 saveplot;R_GetX11ImageRoutine image;R_X11_access access;R_X11clp readclp;R_version_t R_pngVersion, R_jpegVersion, R_tiffVersion;} R_X11Routines;typedef struct {R_X11DataEntryRoutine de;R_X11DataViewer dv;} R_deRoutines;#ifdef __cplusplusextern "C" {#endifR_X11Routines *R_setX11Routines(R_X11Routines *routines);R_deRoutines *R_setdeRoutines(R_deRoutines *routines);#ifdef __cplusplus}#endif#endif /* R_X11_MODULE_H */