mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
Imported *MainLoop() from libctru.
This commit is contained in:
parent
cddec5c754
commit
ebf81ab6ff
@ -14,3 +14,9 @@ void appletExit(void);
|
|||||||
Result appletGetAppletResourceUserId(u64 *out);
|
Result appletGetAppletResourceUserId(u64 *out);
|
||||||
|
|
||||||
Result appletCreateManagedDisplayLayer(u64 *out);
|
Result appletCreateManagedDisplayLayer(u64 *out);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Processes the current applet status. Generally used within a main loop.
|
||||||
|
* @return Whether the application should continue running.
|
||||||
|
*/
|
||||||
|
bool appletMainLoop(void);
|
||||||
|
@ -602,3 +602,7 @@ Result appletCreateManagedDisplayLayer(u64 *out) {
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool appletMainLoop(void) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user