akmenu-next/arm9/source/romlauncher.h
2024-10-13 02:11:14 -07:00

22 lines
414 B
C++

/*
romlauncher.h
Copyright (C) 2010 yellow wood goblin
SPDX-License-Identifier: GPL-3.0-or-later
*/
#pragma once
#include "dsrom.h"
enum TLaunchResult {
ELaunchRomOk,
ELaunchSDOnly,
ELaunchRestoreFail,
ELaunchSlowSD,
ELaunchNoFreeSpace
};
TLaunchResult launchRom(const std::string& aFullPath, DSRomInfo& aRomInfo, bool aMenu);
void autoLaunchRom(const std::string& aFullPath);