mirror of
				https://github.com/coop-deluxe/sm64coopdx.git
				synced 2025-10-30 08:01:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			282 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _ULTRA64_LIBAUDIO_H_
 | 
						|
#define _ULTRA64_LIBAUDIO_H_
 | 
						|
 | 
						|
#include "abi.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
 |