diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-01 03:51:24 +0100 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-11-30 18:51:24 -0800 |
commit | 4258e60771aa9fdabd678930eca534423bd371b8 (patch) | |
tree | ecca2ee7641abc0562f39b6c7dd907af2184e102 /include/save_menu_util.h | |
parent | 831f8cd4fd94613d6b52d87df1b4903bedfaa717 (diff) |
Declare more non-static functions in header files (#111)
* Declare more non-static functions in header files
* Use `(void)` for functions without arguments.
* Move global-included data to seperate headers
* Don't import types or global in header
* Fix fieldmap imports
* Revert in-code changes
* Add missing newlines
Diffstat (limited to 'include/save_menu_util.h')
-rw-r--r-- | include/save_menu_util.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/save_menu_util.h b/include/save_menu_util.h new file mode 100644 index 000000000..560a39d89 --- /dev/null +++ b/include/save_menu_util.h @@ -0,0 +1,16 @@ +#ifndef GUARD_SAVE_MENU_UTIL_H +#define GUARD_SAVE_MENU_UTIL_H + +void HandleDrawSaveWindowInfo(s16 left, s16 top); +void sub_80946C8(u16 left, u16 top); +u8 sub_809473C(void); +void PrintSavePlayerName(s16 x, s16 y); +void PrintSaveMapName(s16 x, s16 y); +void PrintSaveBadges(s16 x, s16 y); +void PrintSavePokedexCount(s16 x, s16 y); +void PrintSavePlayTime(s16 x, s16 y); +u8 GetBadgeCount(void); +u16 GetPokedexSeenCount(void); +void FormatPlayTime(char *playtime, u16 hours, u16 minutes, bool16 colon); + +#endif // GUARD_SAVE_MENU_UTIL_H |