Files

20 lines
291 B
C
Raw Permalink Normal View History

2020-10-14 21:13:33 -07:00
#ifndef _ULTRA64_LIBAUDIO_H_
#define _ULTRA64_LIBAUDIO_H_
2024-05-01 10:09:49 -06:00
#include <libultra/abi.h>
2020-10-14 21:13:33 -07:00
2024-08-28 01:47:39 +02:00
typedef struct {
u8* offset;
2020-10-14 21:13:33 -07:00
s32 len;
} ALSeqData;
2024-08-28 01:47:39 +02:00
typedef struct {
2020-10-14 21:13:33 -07:00
s16 revision;
s16 seqCount;
ALSeqData seqArray[1];
} ALSeqFile;
2024-08-28 01:47:39 +02:00
void alSeqFileNew(ALSeqFile* f, u8* base);
2020-10-14 21:13:33 -07:00
#endif