mirror of
https://github.com/rvtr/TDT.git
synced 2025-10-31 13:51:07 -04:00
19 lines
267 B
C
19 lines
267 B
C
#ifndef MENUS_H
|
|
#define MENUS_H
|
|
|
|
#include "main.h"
|
|
|
|
//Text box choices
|
|
#define YES 1
|
|
#define NO 0
|
|
|
|
void titleMenu();
|
|
void installMenu();
|
|
void testMenu();
|
|
|
|
void keyWait(u32 key);
|
|
|
|
int choiceBox(char* message);
|
|
void messageBox(char* message);
|
|
|
|
#endif |