diff options
author | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-06-24 15:55:08 +0200 |
---|---|---|
committer | Michael Panzlaff <michael.panzlaff@fau.de> | 2021-06-24 15:57:31 +0200 |
commit | 9ff579dac825bf4afa7c9fb4ea3e5a1ffb2d996d (patch) | |
tree | 6713a9ca059fdd4f97d113297ae1b451b50da2fd /arm7/lib | |
parent | ac7337cc6410f96eb743c46f30c195b0da805ae5 (diff) |
cleanup header includes and orders
Not complete, but a good start.
Diffstat (limited to 'arm7/lib')
-rw-r--r-- | arm7/lib/include/SND_alarm.h | 12 | ||||
-rw-r--r-- | arm7/lib/include/SND_exChannel.h | 8 | ||||
-rw-r--r-- | arm7/lib/include/SND_work.h | 4 |
3 files changed, 24 insertions, 0 deletions
diff --git a/arm7/lib/include/SND_alarm.h b/arm7/lib/include/SND_alarm.h new file mode 100644 index 00000000..195b90bb --- /dev/null +++ b/arm7/lib/include/SND_alarm.h @@ -0,0 +1,12 @@ +#ifndef GUARD_SND_ALARM_H +#define GUARD_SND_ALARM_H + +#include "global.h" +#include "SND_alarm_shared.h" + +void SND_StopAlarm(u32 idx); +void SND_StartAlarm(u32 idx); +void SND_SetupAlarm(); +void SND_AlarmInit(); + +#endif //GUARD_SND_ALARM_H
\ No newline at end of file diff --git a/arm7/lib/include/SND_exChannel.h b/arm7/lib/include/SND_exChannel.h new file mode 100644 index 00000000..05fbe3d7 --- /dev/null +++ b/arm7/lib/include/SND_exChannel.h @@ -0,0 +1,8 @@ +#ifndef GUARD_SND_EXCHANNEL_H +#define GUARD_SND_EXCHANNEL_H + +#include "global.h" + +bool SND_IsChannelActive(u32 idx); + +#endif //GUARD_SND_EXCHANNEL_H
\ No newline at end of file diff --git a/arm7/lib/include/SND_work.h b/arm7/lib/include/SND_work.h new file mode 100644 index 00000000..9b834c6c --- /dev/null +++ b/arm7/lib/include/SND_work.h @@ -0,0 +1,4 @@ +#ifndef GUARD_SND_WORK_H +#define GUARD_SND_WORK_H + +#endif //GUARD_SND_WORK_H
\ No newline at end of file |