mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-15 14:11:24 -04:00
15 lines
256 B
C
15 lines
256 B
C
#ifndef _IN_LIB_AUDIODMA_H
|
|
#define _IN_LIB_AUDIODMA_H
|
|
#include <ultra64.h>
|
|
#include "data.h"
|
|
#include "types.h"
|
|
|
|
struct admastate;
|
|
|
|
void admaInit(void);
|
|
void *admaNew(struct admastate **state);
|
|
void admaBeginFrame(void);
|
|
void admaReceiveAll(void);
|
|
|
|
#endif
|