mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-11-28 16:30:54 +01:00
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:
parent
8257e32f71
commit
b97479a9d7
@ -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)
|
||||
|
||||
|
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
@ -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 */
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user