PSP2SDK  dirty-f9e4f2d
The free SDK for PSP2
include/psp2/io/dirent.h
Go to the documentation of this file.
00001 
00012 #ifndef _PSP2_IO_DRENT_H_
00013 #define _PSP2_IO_DRENT_H_
00014 
00015 #include <psp2/types.h>
00016 #include <psp2/io/stat.h>
00017 
00018 #ifdef __cplusplus
00019 extern "C" {
00020 #endif
00021 
00023 typedef struct SceIoDirent {
00025     SceIoStat   d_stat;
00027     char    d_name[256];
00029     void    *d_private;
00030     int dummy;
00031 } SceIoDirent;
00032 
00046 SceUID sceIoDopen(const char *dirname);
00047 
00059 int sceIoDread(SceUID fd, SceIoDirent *dir);
00060 
00067 int sceIoDclose(SceUID fd);
00068 
00069 #ifdef __cplusplus
00070 }
00071 #endif
00072 
00073 #endif /* _PSP2_IO_DRENT_H_ */
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines