unlaunch-installer_dev/arm9/src/main.h
Edoardo Lolletti 71c1c21234 Add hash and size check for known unlaunch installer versions
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
2024-04-25 22:42:38 +02:00

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