Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/kernel/psploadexec_kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extern "C" {
/**@{*/

/** Structure for LoadExecVSH* functions */
struct SceKernelLoadExecVSHParam {
typedef struct SceKernelLoadExecVSHParam {
/** Size of the structure in bytes */
SceSize size;
/** Size of the arguments string */
Expand All @@ -46,7 +46,7 @@ struct SceKernelLoadExecVSHParam {
u32 unk4;
/** unknown flag default value = 0x10000 */
u32 unk5;
};
} SceKernelLoadExecVSHParam;

#if defined(_PSP_FW_VERSION) && _PSP_FW_VERSION < 200
/**
Expand Down
16 changes: 8 additions & 8 deletions src/user/pspiofilemgr_dirent.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@

#include <pspiofilemgr_stat.h>

typedef struct SceIoPrivateDirent {
typedef struct SceIoFatDirentPrivate {
SceSize size;
char shortFileName[13];
char s_name[13];
char __padding__[3];
char longFileName[1024];
} SceIoPrivateDirent;
char l_name[1024];
} SceIoFatDirentPrivate;

/** Describes a single directory entry */
typedef struct SceIoDirent {
/** File status. */
SceIoStat d_stat;
SceIoStat d_stat;
/** File name. */
char d_name[256];
char d_name[256];
/** Device-specific data. */
SceIoPrivateDirent* d_private;
int dummy;
SceIoFatDirentPrivate* d_private;
int dummy;
} SceIoDirent;

#endif /* PSPIOFILEMGR_DIRENT_H */