File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ extern "C" {
2727/**@{*/
2828
2929/** Structure for LoadExecVSH* functions */
30- struct SceKernelLoadExecVSHParam {
30+ typedef struct SceKernelLoadExecVSHParam {
3131/** Size of the structure in bytes */
3232 SceSize size ;
3333/** Size of the arguments string */
@@ -46,7 +46,7 @@ struct SceKernelLoadExecVSHParam {
4646 u32 unk4 ;
4747/** unknown flag default value = 0x10000 */
4848 u32 unk5 ;
49- };
49+ } SceKernelLoadExecVSHParam ;
5050
5151#if defined(_PSP_FW_VERSION ) && _PSP_FW_VERSION < 200
5252/**
Original file line number Diff line number Diff line change 2020
2121#include <pspiofilemgr_stat.h>
2222
23- typedef struct SceIoPrivateDirent {
23+ typedef struct SceIoFatDirentPrivate {
2424 SceSize size ;
25- char shortFileName [13 ];
25+ char s_name [13 ];
2626 char __padding__ [3 ];
27- char longFileName [1024 ];
28- } SceIoPrivateDirent ;
27+ char l_name [1024 ];
28+ } SceIoFatDirentPrivate ;
2929
3030/** Describes a single directory entry */
3131typedef struct SceIoDirent {
3232 /** File status. */
33- SceIoStat d_stat ;
33+ SceIoStat d_stat ;
3434 /** File name. */
35- char d_name [256 ];
35+ char d_name [256 ];
3636 /** Device-specific data. */
37- SceIoPrivateDirent * d_private ;
38- int dummy ;
37+ SceIoFatDirentPrivate * d_private ;
38+ int dummy ;
3939} SceIoDirent ;
4040
4141#endif /* PSPIOFILEMGR_DIRENT_H */
You can’t perform that action at this time.
0 commit comments