00001 /* 00002 * PSP Software Development Kit - http://www.pspdev.org 00003 * ----------------------------------------------------------------------- 00004 * Licensed under the BSD license, see LICENSE in PSPSDK root for details. 00005 * 00006 * pspiofilemgr_dirent.h - File attributes and directory entries. 00007 * 00008 * Copyright (c) 2005 Marcus R. Brown <mrbrown@ocgnet.org> 00009 * Copyright (c) 2005 James Forshaw <tyranid@gmail.com> 00010 * Copyright (c) 2005 John Kelley <ps2dev@kelley.ca> 00011 * 00012 * $Id: pspiofilemgr_dirent.h 1172 2005-10-20 09:08:04Z jim $ 00013 */ 00014 00015 /* Note: Some of the structures, types, and definitions in this file were 00016 extrapolated from symbolic debugging information found in the Japanese 00017 version of Puzzle Bobble. */ 00018 00019 #ifndef PSPIOFILEMGR_DIRENT_H 00020 #define PSPIOFILEMGR_DIRENT_H 00021 00022 #include <pspiofilemgr_stat.h> 00023 00025 typedef struct SceIoDirent { 00027 SceIoStat d_stat; 00029 char d_name[256]; 00031 void * d_private; 00032 int dummy; 00033 } SceIoDirent; 00034 00035 #endif /* PSPIOFILEMGR_DIRENT_H */