mirror of
https://github.com/rvtr/unlaunch-installer_dev.git
synced 2026-01-26 13:43:08 -05:00
Also check the installer to be valid at startup, rather than once the install process has started, so that the install option can be properly grayed out
25 lines
371 B
C
25 lines
371 B
C
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
#include <nds.h>
|
|
#include <fat.h>
|
|
#include <stdio.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern volatile bool programEnd;
|
|
extern bool charging;
|
|
extern u8 batteryLevel;
|
|
|
|
extern PrintConsole topScreen;
|
|
extern PrintConsole bottomScreen;
|
|
|
|
void clearScreen(PrintConsole* screen);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |