Tactiliest/Tactility/Source/AppManifestRegistry.h
Ken Van Hoeylandt 76c14a5f47
Sort apps on Desktop and Settings (#87)
- Sort apps by name
- Make manifest IDs consistent
- Updated screenshots
- Renamed Screenshot app so it always renders at the bottom of the app list
2024-11-24 22:16:43 +01:00

16 lines
415 B
C++

#pragma once
#include "AppManifest.h"
#include <string>
#include <vector>
namespace tt {
void app_manifest_registry_init();
void app_manifest_registry_add(const AppManifest* manifest);
void app_manifest_registry_remove(const AppManifest* manifest);
const AppManifest _Nullable* app_manifest_registry_find_by_id(const std::string& id);
std::vector<const AppManifest*> app_manifest_registry_get();
} // namespace