diff options
author | scnorton <scnorton@biociphers.org> | 2017-05-31 18:26:50 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-05-31 18:26:50 -0400 |
commit | 9c45d48b962eb8f885e5753205673e7a5499d301 (patch) | |
tree | c872b64b31c76e0bdc1db86ab6ab16dd625b60a6 /include/menu.h | |
parent | 717c14afc42305dcf0a4846191b1c913aae3a3d0 (diff) |
A couple more decorations tasks
Diffstat (limited to 'include/menu.h')
-rw-r--r-- | include/menu.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/menu.h b/include/menu.h index 7fce7ef1a..04ab78b27 100644 --- a/include/menu.h +++ b/include/menu.h @@ -15,6 +15,12 @@ struct MenuAction2 u8 (*func)(u8); }; +struct MenuAction3 +{ + u8 (*func1)(u8); + u8 (*func2)(u8); +}; + void CloseMenu(void); void AppendToList(u8 *list, u8 *pindex, u32 value); void InitMenuWindow(const struct WindowConfig *); |