mirror of
https://github.com/coderkei/akmenu-next.git
synced 2025-06-19 01:15:32 -04:00
22 lines
414 B
C++
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);
|