mirror of
https://github.com/rvtr/unlaunch-installer_dev.git
synced 2026-01-26 13:43:08 -05:00
18 lines
315 B
C
18 lines
315 B
C
#ifndef MESSAGE_H
|
|
#define MESSAGE_H
|
|
|
|
#include <nds/ndstypes.h>
|
|
|
|
enum {
|
|
YES = true,
|
|
NO = false
|
|
};
|
|
|
|
void keyWait(u32 key);
|
|
bool choiceBox(char* message);
|
|
bool choicePrint(char* message);
|
|
bool randomConfirmBox(char* message);
|
|
void messageBox(char* message);
|
|
void messagePrint(char* message);
|
|
|
|
#endif |