summaryrefslogtreecommitdiff
path: root/include/common/kernel/iofilemgr/dirent.h
diff options
context:
space:
mode:
authorReiko Asakura2021-01-20 14:11:05 -0500
committerReiko Asakura2021-01-20 14:11:05 -0500
commit648ee989cc6ac04ba07f5a8942f6ab711f62d6b4 (patch)
treee3d475d4f6f22d4e0488cbe4e3d78f5146a54f70 /include/common/kernel/iofilemgr/dirent.h
parentAdd scejpegenc.h for kernel (diff)
downloadvds-libraries-648ee989cc6ac04ba07f5a8942f6ab711f62d6b4.tar.gz
Rename iofilemgr headers
Diffstat (limited to 'include/common/kernel/iofilemgr/dirent.h')
-rw-r--r--include/common/kernel/iofilemgr/dirent.h23
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_ */