berry-fix/payload/include/message_box.h
2022-01-15 14:51:32 -05:00

17 lines
298 B
C

#ifndef GUARD_MESSAGE_BOX_H
#define GUARD_MESSAGE_BOX_H
enum Message
{
MSG_WILL_NOW_UPDATE = 0,
MSG_HAS_BEEN_UPDATED,
MSG_UNABLE_TO_UPDATE,
MSG_NO_NEED_TO_UPDATE,
MSG_UPDATING
};
void MessageBox_Load(void);
void MessageBox_Display(enum Message);
#endif //GUARD_MESSAGE_BOX_H