From 32dc93420328821ad22db3cbac7e3b717858043e Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Mon, 12 Sep 2022 21:53:49 -0700 Subject: [PATCH] Forgot gba.h too --- include/dolphin/gba.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/dolphin/gba.h diff --git a/include/dolphin/gba.h b/include/dolphin/gba.h new file mode 100644 index 00000000..429c11cc --- /dev/null +++ b/include/dolphin/gba.h @@ -0,0 +1,12 @@ +#ifndef __GBA_H__ +#define __GBA_H__ + +#ifdef __cplusplus +extern "C" { +#endif +void GBAInit(); +#ifdef __cplusplus +} +#endif + +#endif