mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
18 lines
375 B
C
18 lines
375 B
C
#ifndef OSDSP_TASK_H
|
|
#define OSDSP_TASK_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct STRUCT_DSP_TASK DSPTaskInfo;
|
|
typedef struct OSContext OSContext;
|
|
|
|
extern DSPTaskInfo* DSP_prior_task;
|
|
|
|
extern "C" void __DSPHandler(int, OSContext*);
|
|
void DsyncFrame2(u32, u32, u32);
|
|
void Dsp_Update_Request();
|
|
BOOL Dsp_Running_Check();
|
|
void Dsp_Running_Start();
|
|
|
|
#endif /* OSDSP_TASK_H */
|