mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-16 22:39:59 -04:00
21 lines
265 B
C
21 lines
265 B
C
#ifndef _ULTRA64_LIBAUDIO_H_
|
|
#define _ULTRA64_LIBAUDIO_H_
|
|
|
|
|
|
typedef struct
|
|
{
|
|
u8 *offset;
|
|
s32 len;
|
|
} ALSeqData;
|
|
|
|
typedef struct
|
|
{
|
|
s16 revision;
|
|
s16 seqCount;
|
|
ALSeqData seqArray[1];
|
|
} ALSeqFile;
|
|
|
|
void alSeqFileNew(ALSeqFile *f, u8 *base);
|
|
|
|
#endif
|