Mercurial > minori
view include/services/services.h @ 198:bc1ae1810855
dep/animia: switch from using classes to global functions
the old idea was ok, but sort of hackish; this method doesn't use classes
at all, and this way (especially important!) we can do wayland stuff AND x11
at the same time, which wasn't really possible without stupid workarounds in
the other method
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 24 Dec 2023 02:59:42 -0500 |
parents | 0c4138de2ea7 |
children | c130f47f6f48 |
line wrap: on
line source
#ifndef __services__services_h #define __services__services_h namespace Services { void Synchronize(); void UpdateAnimeEntry(int id); bool Authorize(); }; // namespace Services #endif // __services__services_h