mirror of
https://github.com/XorTroll/uLaunch
synced 2025-02-17 04:58:30 +00:00
20 lines
No EOL
388 B
C++
20 lines
No EOL
388 B
C++
#include <am/am_HomeMenu.hpp>
|
|
#include <am/am_LibraryApplet.hpp>
|
|
|
|
namespace am
|
|
{
|
|
bool home_focus = true;
|
|
extern AppletHolder applet_holder;
|
|
|
|
bool HomeMenuHasForeground()
|
|
{
|
|
return home_focus;
|
|
}
|
|
|
|
Result HomeMenuSetForeground()
|
|
{
|
|
Result rc = appletRequestToGetForeground();
|
|
if(R_SUCCEEDED(rc)) home_focus = true;
|
|
return rc;
|
|
}
|
|
} |