The R Project SVN R

Rev

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

Rev 17134 Rev 19500
Line 5... Line 5...
5
  These structures are for C (and R function) top-level task handlers.
5
  These structures are for C (and R function) top-level task handlers.
6
  Such routines are called at the end of every (successful) top-level task
6
  Such routines are called at the end of every (successful) top-level task
7
  in the regular REPL. 
7
  in the regular REPL. 
8
 */
8
 */
9
 
9
 
10
#include "Rinternals.h"
10
#include <Rinternals.h>
11
/**
11
/**
12
  The signature of the C routine that a callback must implement.
12
  The signature of the C routine that a callback must implement.
13
  expr - the expression for the top-level task that was evaluated.
13
  expr - the expression for the top-level task that was evaluated.
14
  value - the result of the top-level task, i.e. evaluating expr.
14
  value - the result of the top-level task, i.e. evaluating expr.
15
  succeeded - a logical value indicating whether the task completed propertly.
15
  succeeded - a logical value indicating whether the task completed propertly.