mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
2275eb710b
* Work on J2DMaterialFactory * J3DUClipper OK * Work on JAISoundStarter * JAISoundHandles OK * JAISoundInfo OK * Fix JAISound::isStopping * Work on J2DTextBoxEx * dspproc OK * osdsp OK * osdsp_task OK * Work on dsptask * Import some JASCalc code * JASCallback OK * JASOscillator OK * JASLfo OK
22 lines
323 B
C
22 lines
323 B
C
#ifndef OSDSP_TASK_H
|
|
#define OSDSP_TASK_H
|
|
|
|
#include "dolphin/types.h"
|
|
#include "dolphin/os/OSInterrupt.h"
|
|
|
|
struct DSPTaskInfo;
|
|
|
|
extern DSPTaskInfo* DSP_prior_task;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void __DSPHandler(OSInterrupt interrupt, OSContext* context);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* OSDSP_TASK_H */
|