diff options
author | Reiko Asakura | 2021-01-20 14:11:31 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-01-20 14:11:31 -0500 |
commit | 565774deea1d8d8627c1ad553439afdfb8cebc2d (patch) | |
tree | 28cee53ff44d7fb4543e13a23ed1b6013ddff48b /include/common/kernel/iofilemgr_dirent.h | |
parent | Rename iofilemgr headers (diff) | |
download | vds-libraries-565774deea1d8d8627c1ad553439afdfb8cebc2d.tar.gz |
Remove dupe: iofilemgr
Diffstat (limited to 'include/common/kernel/iofilemgr_dirent.h')
-rw-r--r-- | include/common/kernel/iofilemgr_dirent.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/include/common/kernel/iofilemgr_dirent.h b/include/common/kernel/iofilemgr_dirent.h deleted file mode 100644 index 1e28c22..0000000 --- a/include/common/kernel/iofilemgr_dirent.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef _DOLCESDK_PSP2COMMON_KERNEL_IOFILEMGR_DIRENT_H_ -#define _DOLCESDK_PSP2COMMON_KERNEL_IOFILEMGR_DIRENT_H_ - -#include <psp2common/kernel/types.h> -#include <psp2common/kernel/iofilemgr/stat.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** Describes a single directory entry */ -typedef struct SceIoDirent { - SceIoStat d_stat; //!< File status - char d_name[256]; //!< File name (not file path) - void *d_private; //!< Reserved (set to 0) - int dummy; //!< Padding -} SceIoDirent; - -#ifdef __cplusplus -} -#endif - -#endif /* _DOLCESDK_PSP2COMMON_KERNEL_IOFILEMGR_DIRENT_H_ */ |