-uint8_t SideShow_GetTotalApplications(void)\r
-{\r
- uint8_t TotalInstalledApps = 0;\r
- \r
- for (uint8_t App = 0; App < ARRAY_ELEMENTS(InstalledApplications); App++)\r
- {\r
- if (InstalledApplications[App].InUse)\r
- TotalInstalledApps++;\r
- }\r
- \r
- return TotalInstalledApps; \r
-}\r
-\r