|
KallistiOS git master
Independent SDK for the Sega Dreamcast
|
Type representing a directory stream. More...
#include <dirent.h>
Data Fields | ||
| file_t | fd | |
| File descriptor for the directory. | ||
| union { | ||
| struct dirent d_ent | ||
| Current directory entry. More... | ||
| struct { | ||
| struct dirent d_ent2 | ||
| Current directory entry (alias) More... | ||
| char d_name [NAME_MAX+1] | ||
| Storage for d_ent::d_name[] FAM. More... | ||
| } | ||
| Extended dirent structure with name storage. | ||
| }; | ||
| Union of dirent + extended dirent required for C++. | ||
Type representing a directory stream.
This type represents a directory stream and is used by the directory reading functions to trace their position in the directory.
| union { ... } DIR |
Union of dirent + extended dirent required for C++.
| struct dirent DIR::d_ent |
Current directory entry.
| struct dirent DIR::d_ent2 |
Current directory entry (alias)
| char DIR::d_name[NAME_MAX+1] |
Storage for d_ent::d_name[] FAM.
| file_t DIR::fd |
File descriptor for the directory.