mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 15:00:55 -04:00
7d483f4274
* Match two JASTrack functions * dsptask, JAISoundStarter OK. Other small matches * Work on JAIStream * Work on JAIStreamMgr * Work on JAISeqMgr * Formatting
14 lines
233 B
C
14 lines
233 B
C
#ifndef OSDSP_H
|
|
#define OSDSP_H
|
|
|
|
#include "dolphin/dsp.h"
|
|
|
|
struct STRUCT_DSP_TASK {
|
|
/* 0x00 */ DSPTaskInfo info;
|
|
};
|
|
|
|
extern "C" DSPTaskInfo* DSPAddTask(DSPTaskInfo*);
|
|
void DSPAddPriorTask(STRUCT_DSP_TASK*);
|
|
|
|
#endif /* OSDSP_H */
|