Imported *MainLoop() from libctru.

This commit is contained in:
yellows8 2017-12-07 18:54:07 -05:00
parent cddec5c754
commit ebf81ab6ff
2 changed files with 10 additions and 0 deletions

View File

@ -14,3 +14,9 @@ void appletExit(void);
Result appletGetAppletResourceUserId(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);

View File

@ -602,3 +602,7 @@ Result appletCreateManagedDisplayLayer(u64 *out) {
return rc;
}
bool appletMainLoop(void) {
return true;
}