11 #include "threads/CriticalSection.h" 23 using AddonPtr = std::shared_ptr<IAddon>;
24 using VECADDONS = std::vector<AddonPtr>;
34 void GetAddons(VECADDONS& addons, AddonType type);
35 void GetDisabledAddons(VECADDONS& addons, AddonType type);
36 void GetInstalledAddons(VECADDONS& addons, AddonType type);
37 AddonPtr GetAddonInstance(
const std::string& strId, AddonType type);
43 CCriticalSection m_critSection;
44 std::multimap<AddonType, VECADDONS> m_addons;
Definition: BinaryAddonCache.h:28
Definition: AddonEvents.h:18