mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-07-01 03:00:09 -04:00
8cc9fc069c
* Create chraicommands.c * Move include to src/include * Use .o files next to each .c file
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
|