summaryrefslogtreecommitdiff
path: root/include/menu_helpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/menu_helpers.h')
-rw-r--r--include/menu_helpers.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/menu_helpers.h b/include/menu_helpers.h
new file mode 100644
index 000000000..f55a90615
--- /dev/null
+++ b/include/menu_helpers.h
@@ -0,0 +1,12 @@
+#ifndef GUARD_MENU_HELPERS_H
+#define GUARD_MENU_HELPERS_H
+
+struct YesNoFuncTable
+{
+ void (*yesFunc)(u8);
+ void (*noFunc)(u8);
+};
+
+void sub_80F914C(u8, const struct YesNoFuncTable *);
+
+#endif // GUARD_MENU_HELPERS_H