Go to the source code of this file.
Classes | |
| struct | bd_file_s |
| struct | BD_DIRENT |
| struct | bd_dir_s |
Typedefs | |
| typedef struct bd_file_s | BD_FILE_H |
| typedef struct bd_dir_s | BD_DIR_H |
| typedef BD_FILE_H *(* | BD_FILE_OPEN )(const char *filename, const char *mode) |
| typedef BD_DIR_H *(* | BD_DIR_OPEN )(const char *dirname) |
Functions | |
| BD_FILE_OPEN | bd_register_file (BD_FILE_OPEN p) |
| Register function pointer that will be used to open a file. | |
| BD_DIR_OPEN | bd_register_dir (BD_DIR_OPEN p) |
| Register function pointer that will be used to open a directory. | |
Definition at line 35 of file filesystem.h.
Definition at line 58 of file filesystem.h.
| typedef BD_FILE_H*(* BD_FILE_OPEN)(const char *filename, const char *mode) |
Definition at line 66 of file filesystem.h.
| typedef BD_DIR_H*(* BD_DIR_OPEN)(const char *dirname) |
Definition at line 67 of file filesystem.h.
| BD_FILE_OPEN bd_register_file | ( | BD_FILE_OPEN | p | ) |
Register function pointer that will be used to open a file.
| p | function pointer |
Definition at line 27 of file filesystem.c.
| BD_DIR_OPEN bd_register_dir | ( | BD_DIR_OPEN | p | ) |
Register function pointer that will be used to open a directory.
| p | function pointer |
Definition at line 34 of file filesystem.c.
1.6.3