The R Project SVN R

Rev

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

Rev 56585 Rev 60666
Line 3... Line 3...
3
 
3
 
4
 
4
 
5
#include <Rinternals.h>
5
#include <Rinternals.h>
6
 
6
 
7
 
7
 
8
typedef SEXP (*R_DownloadRoutine)(SEXP call, SEXP op, SEXP args, SEXP env);
8
typedef SEXP (*R_DownloadRoutine)(SEXP args);
9
typedef Rconnection (*R_NewUrlRoutine)(const char *description, const char * const mode);
9
typedef Rconnection (*R_NewUrlRoutine)(const char *description, const char * const mode);
10
typedef Rconnection (*R_NewSockRoutine)(const char *host, int port, int server, const char *const mode, int timeout); 
10
typedef Rconnection (*R_NewSockRoutine)(const char *host, int port, int server, const char *const mode, int timeout); 
11
 
11
 
12
typedef void * (*R_HTTPOpenRoutine)(const char *url, const char *headers, const int cacheOK);
12
typedef void * (*R_HTTPOpenRoutine)(const char *url, const char *headers, const int cacheOK);
13
typedef int    (*R_HTTPReadRoutine)(void *ctx, char *dest, int len);
13
typedef int    (*R_HTTPReadRoutine)(void *ctx, char *dest, int len);