| Line 7... |
Line 7... |
| 7 |
|
7 |
|
| 8 |
typedef SEXP (*R_DownloadRoutine)(SEXP call, SEXP op, SEXP args, SEXP env);
|
8 |
typedef SEXP (*R_DownloadRoutine)(SEXP call, SEXP op, SEXP args, SEXP env);
|
| 9 |
typedef Rconnection (*R_NewUrlRoutine)(char *description, char *mode);
|
9 |
typedef Rconnection (*R_NewUrlRoutine)(char *description, char *mode);
|
| 10 |
typedef Rconnection (*R_NewSockRoutine)(char *host, int port, int server, char *mode);
|
10 |
typedef Rconnection (*R_NewSockRoutine)(char *host, int port, int server, char *mode);
|
| 11 |
|
11 |
|
| 12 |
typedef void * (*R_HTTPOpenRoutine)(const char *url, 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);
|
| 14 |
typedef void (*R_HTTPCloseRoutine)(void *ctx);
|
14 |
typedef void (*R_HTTPCloseRoutine)(void *ctx);
|
| 15 |
|
15 |
|
| 16 |
typedef void * (*R_FTPOpenRoutine)(const char *url);
|
16 |
typedef void * (*R_FTPOpenRoutine)(const char *url);
|
| 17 |
typedef int (*R_FTPReadRoutine)(void *ctx, char *dest, int len);
|
17 |
typedef int (*R_FTPReadRoutine)(void *ctx, char *dest, int len);
|