#include "rcs_defs.hh"Include dependency graph for inetfile.hh:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | INET_FILE void |
Functions | |
| int RCS_EXPORT | inet_file_init (const char *, char *, int debug) |
| RCS_EXPORT int | inet_file_exit () |
| RCS_EXPORT INET_FILE * | inet_file_open (const char *url, char *) |
| RCS_EXPORT int | inet_file_close (INET_FILE *) |
| RCS_EXPORT char * | inet_file_gets (char *, int, INET_FILE *) |
| RCS_EXPORT int | inet_file_eof (INET_FILE *) |
| int RCS_EXPORT | inet_file_rewind (INET_FILE *) |
|
|
Definition at line 16 of file inetfile.hh. |
|
||||||||||||||||
|
Definition at line 25 of file inetnull.cc. 00026 {
00027 return 0;
00028 }
|
|
|
Definition at line 87 of file inetnull.cc. 00088 {
00089 return 0;
00090 }
|
|
||||||||||||
|
Definition at line 32 of file inetnull.cc. 00033 {
00034
00035 FILE *fp = NULL;
00036 INET_FILE *inet_file = NULL;
00037
00038 fp = fopen (url, type);
00039 if (NULL == fp)
00040 {
00041 return NULL;
00042 }
00043 inet_file = new INET_FILE;
00044 if (NULL != inet_file)
00045 {
00046 inet_file->fp = fp;
00047 }
00048 return inet_file;
00049 }
|
|
|
Definition at line 65 of file inetnull.cc. |
|
||||||||||||||||
|
Definition at line 54 of file inetnull.cc. |
|
|
Definition at line 76 of file inetnull.cc. |
|
|
Definition at line 94 of file inetnull.cc. |
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001