hook exst into the rest of vgmstream

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@113 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-05-13 12:18:24 +00:00
parent 8257e32f71
commit b97479a9d7
4 changed files with 7 additions and 3 deletions

View File

@ -33,7 +33,8 @@ META_OBJS=meta/adx_header.o \
meta/rwsd.o \
meta/psx_cdxa.o \
meta/ps2_rxw.o \
meta/ps2_int.o
meta/ps2_int.o \
meta/ps2_exst.o
OBJECTS=vgmstream.o streamfile.o util.o $(CODING_OBJS) $(LAYOUT_OBJS) $(META_OBJS)

View File

@ -43,4 +43,6 @@ VGMSTREAM * init_vgmstream_ps2_rxw(const char * const filename);
VGMSTREAM * init_vgmstream_ps2_int(const char * const filename);
VGMSTREAM * init_vgmstream_ps2_exst(const char * const filename);
#endif

View File

@ -14,7 +14,7 @@
2008-05-13 - Fastelbja : First version ...
*/
VGMSTREAM * init_vgmstream_ps2_ads(const char * const filename) {
VGMSTREAM * init_vgmstream_ps2_exst(const char * const filename) {
VGMSTREAM * vgmstream = NULL;
STREAMFILE * infile = NULL;

View File

@ -15,7 +15,7 @@
* List of functions that will recognize files. These should correspond pretty
* directly to the metadata types
*/
#define INIT_VGMSTREAM_FCNS 20
#define INIT_VGMSTREAM_FCNS 21
VGMSTREAM * (*init_vgmstream_fcns[INIT_VGMSTREAM_FCNS])(const char * const) = {
init_vgmstream_adx, /* 0 */
init_vgmstream_brstm, /* 1 */
@ -37,6 +37,7 @@ VGMSTREAM * (*init_vgmstream_fcns[INIT_VGMSTREAM_FCNS])(const char * const) = {
init_vgmstream_ps2_rxw, /* 17 */
init_vgmstream_ps2_int, /* 18 */
init_vgmstream_ngc_dsp_stm, /* 19 */
init_vgmstream_ps2_exst, /* 20 */
};