mirror of
https://github.com/libretro/pcsx2.git
synced 2024-12-22 01:40:19 +00:00
6ebfae8ef1
Added interface.cpp (plugin/pcsx2 interface) and savestate.cpp to SPU2ghz, to help clean up SPU2.cpp. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@463 96395faa-99c1-11dd-bbfe-3dabce05a288
21 lines
359 B
C
21 lines
359 B
C
#ifndef __ROMDIR_H__
|
|
#define __ROMDIR_H__
|
|
|
|
#include <tamtypes.h>
|
|
|
|
struct romdir {
|
|
/*following variable must place in designed order*/
|
|
u8 fileName[10];
|
|
u16 extInfoSize;
|
|
u32 fileSize;
|
|
} __attribute__ ((packed));
|
|
|
|
struct rominfo {
|
|
u32 fileOffset;
|
|
u32 fileSize;
|
|
};
|
|
|
|
struct rominfo *romdirGetFile(char *name, struct rominfo *ri);
|
|
|
|
#endif /* __ROMDIR_H__ */
|