mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-05-09 04:11:55 -05:00
Some checks are pending
build / build (push) Waiting to run
Co-authored-by: Rachel <rachel@lhea.me>
19 lines
588 B
C
19 lines
588 B
C
#ifndef POKEPLATINUM_APPLICATIONS_MAIL_VIEWER_H
|
|
#define POKEPLATINUM_APPLICATIONS_MAIL_VIEWER_H
|
|
|
|
#include "overlay_manager.h"
|
|
|
|
enum MailViewerResult {
|
|
MAIL_VIEWER_RESULT_EDIT_SENTENCE_1 = 0,
|
|
MAIL_VIEWER_RESULT_EDIT_SENTENCE_2,
|
|
MAIL_VIEWER_RESULT_EDIT_SENTENCE_3,
|
|
MAIL_VIEWER_RESULT_CONFIRM,
|
|
MAIL_VIEWER_RESULT_CANCEL = 0xFFFF,
|
|
};
|
|
|
|
BOOL MailViewer_Init(ApplicationManager *appMan, int *state);
|
|
BOOL MailViewer_Main(ApplicationManager *appMan, int *state);
|
|
BOOL MailViewer_Exit(ApplicationManager *appMan, int *state);
|
|
|
|
#endif // POKEPLATINUM_APPLICATIONS_MAIL_VIEWER_H
|