mirror of
https://github.com/pret/pokeruby.git
synced 2026-08-09 02:54:23 -05:00
* 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
23 lines
566 B
C
23 lines
566 B
C
#ifndef GUARD_FIELD_MESSAGE_BOX_H
|
|
#define GUARD_FIELD_MESSAGE_BOX_H
|
|
|
|
enum
|
|
{
|
|
FIELD_MESSAGE_BOX_HIDDEN,
|
|
FIELD_MESSAGE_BOX_UNUSED,
|
|
FIELD_MESSAGE_BOX_NORMAL,
|
|
FIELD_MESSAGE_BOX_AUTO_SCROLL,
|
|
};
|
|
|
|
void InitFieldMessageBox(void);
|
|
bool8 ShowFieldMessage(u8 *message);
|
|
bool8 ShowFieldAutoScrollMessage(u8 *message);
|
|
bool8 unref_sub_8064BB8(u8 *message);
|
|
bool8 unref_sub_8064BD0(u8 *message);
|
|
void HideFieldMessageBox(void);
|
|
u8 GetFieldMessageBoxMode(void);
|
|
bool8 IsFieldMessageBoxHidden(void);
|
|
void unref_sub_8064CA0(void);
|
|
|
|
#endif // GUARD_FIELD_MESSAGE_BOX_H
|