| 17 | } |
| 18 | |
| 19 | static void launchMenuEntryTask(void* arg) |
| 20 | { |
| 21 | menuEntry_s* me = (menuEntry_s*)arg; |
| 22 | if (me->type == ENTRY_TYPE_FOLDER) |
| 23 | changeDirTask(me->path); |
| 24 | else |
| 25 | launchMenuEntry(me); |
| 26 | } |
| 27 | |
| 28 | static void toggleStarTask(void* arg) |
| 29 | { |
nothing calls this directly
no test coverage detected