~showard314/ubuntu/karmic/r-base/remove_start_comments

« back to all changes in this revision

Viewing changes to src/gnuwin32/front-ends/rtest.c

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2008-12-20 09:26:38 UTC
  • mfrom: (1.2.6 upstream)
  • mto: (2.1.32 jaunty)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20081220092638-i4p6po0hndi24ri5
* Updated to Dec 19 release candidate of R 2.8.1 expected for Dec 22

* r-doc-pdf expected to be empty due to the tex/texinfo bug below

* debian/control: Change Build-Depends: on openjdk-6-jdk to 
  'openjdk-6-jdk [!arm !hppa]' as arm and hppa do not have one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <Rembedded.h>
27
27
#include <R_ext/RStartup.h>
28
28
/* for askok and askyesnocancel */
29
 
#include <graphapp/graphapp.h>
 
29
#include <graphapp.h>
30
30
 
31
31
/* for signal-handling code */
32
32
#include <psignal.h>
51
51
    printf("%s", buf);
52
52
}
53
53
 
54
 
void myCallBack()
 
54
void myCallBack(void)
55
55
{
56
56
    /* called during i/o, eval, graphics in ProcessEvents */
57
57
}
89
89
    Rp->home = getRUser();
90
90
    Rp->CharacterMode = LinkDLL;
91
91
    Rp->ReadConsole = myReadConsole;
92
 
    Rp->WriteConsole = NULL; /* for illustration purposes we use more flexibe WriteConsoleEx */
 
92
    Rp->WriteConsole = NULL; /* for illustration purposes we use more flexible WriteConsoleEx */
93
93
    Rp->WriteConsoleEx = myWriteConsoleEx;
94
94
    Rp->CallBack = myCallBack;
95
95
    Rp->ShowMessage = askok;