PSPSDK 1.0+beta2
Loading...
Searching...
No Matches
pspiofilemgr_dirent.h
Go to the documentation of this file.
1/*
2 * PSP Software Development Kit - https://github.com/pspdev
3 * -----------------------------------------------------------------------
4 * Licensed under the BSD license, see LICENSE in PSPSDK root for details.
5 *
6 * pspiofilemgr_dirent.h - File attributes and directory entries.
7 *
8 * Copyright (c) 2005 Marcus R. Brown <mrbrown@ocgnet.org>
9 * Copyright (c) 2005 James Forshaw <tyranid@gmail.com>
10 * Copyright (c) 2005 John Kelley <ps2dev@kelley.ca>
11 *
12 */
13
14/* Note: Some of the structures, types, and definitions in this file were
15 extrapolated from symbolic debugging information found in the Japanese
16 version of Puzzle Bobble. */
17
18#ifndef PSPIOFILEMGR_DIRENT_H
19#define PSPIOFILEMGR_DIRENT_H
20
21#include <pspiofilemgr_stat.h>
22
24typedef struct SceIoDirent {
28 char d_name[256];
30 void * d_private;
31 int dummy;
33
34#endif /* PSPIOFILEMGR_DIRENT_H */
Describes a single directory entry.
Definition pspiofilemgr_dirent.h:24
char d_name[256]
File name.
Definition pspiofilemgr_dirent.h:28
SceIoStat d_stat
File status.
Definition pspiofilemgr_dirent.h:26
void * d_private
Device-specific data.
Definition pspiofilemgr_dirent.h:30
int dummy
Definition pspiofilemgr_dirent.h:31
Structure to hold the status information about a file.
Definition pspiofilemgr_stat.h:102