mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-31 00:45:24 -04:00
f9380b3e05
* d_a_obj_carry work, SETUP_ACTOR macro * rm headers, add script * progress * macro rename, consistent spacing
21 lines
296 B
C
21 lines
296 B
C
#ifndef OSDSP_TASK_H
|
|
#define OSDSP_TASK_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 */
|