Mercurial > minori
view include/services/services.h @ 386:e89901683d72
now_playing: don't reset the timer every 5 seconds
ahaha
| author | Paper <paper@tflc.us> |
|---|---|
| date | Thu, 06 Nov 2025 08:59:44 -0500 |
| parents | 5912dafc6e28 |
| children |
line wrap: on
line source
#ifndef MINORI_SERVICES_SERVICES_H_ #define MINORI_SERVICES_SERVICES_H_ #include "core/anime.h" #include "core/date.h" #include <string> #include <vector> // TODO this stuff should be asynchronous namespace Services { void Synchronize(); /* true = metadata was retrieved * false = metadata failed to be retrieved OR * no metadata to be retrieved */ bool RetrieveAnimeMetadata(int id); std::vector<int> Search(const std::string &search); bool GetSeason(Anime::Season season); void UpdateAnimeEntry(int id); }; // namespace Services #endif // MINORI_SERVICES_SERVICES_H_
