Files
libsm64/src/decomp/include/PR/libaudio.h
T
NepuShiro da3d3b9727
Build libsm64 / Build libsm64 for linux (push) Failing after 29s
Build libsm64 / Build libsm64 for web (push) Failing after 31s
Build libsm64 / Build libsm64 for windows (push) Failing after 23s
Reformat to something more readable for me :3
2026-05-24 11:58:04 -05:00

35 lines
462 B
C

#ifndef _ULTRA64_LIBAUDIO_H_
#define _ULTRA64_LIBAUDIO_H_
#include "abi.h"
#include <stdlib.h>
typedef struct
{
u8 *offset __attribute__((aligned (8)
)
);
s32 len __attribute__((aligned (8)
)
);
} ALSeqData;
typedef struct
{
unsigned short revision;
unsigned short seqCount;
unsigned int pad;
ALSeqData seqArray[1];
} __attribute__((aligned (16)
)
)
ALSeqFile;
void alSeqFileNew(ALSeqFile * f, u8 * base);
#endif