Mercurial > minori
annotate include/services/anilist.h @ 337:a7d4e5107531
dep/animone: REFACTOR ALL THE THINGS
1: animone now has its own syntax divergent from anisthesia,
making different platforms actually have their own sections
2: process names in animone are now called `comm' (this will
probably break things). this is what its called in bsd/linux
so I'm just going to use it everywhere
3: the X11 code now checks for the existence of a UTF-8 window title
and passes it if available
4: ANYTHING THATS NOT LINUX IS 100% UNTESTED AND CAN AND WILL BREAK!
I still actually need to test the bsd code. to be honest I'm probably
going to move all of the bsds into separate files because they're
all essentially different operating systems at this point
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 19 Jun 2024 12:51:15 -0400 |
parents | b5d6c27c308f |
children |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
1 #ifndef MINORI_SERVICES_ANILIST_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
2 #define MINORI_SERVICES_ANILIST_H_ |
15 | 3 |
304
2115488eb302
*: add very early season searcher
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
4 #include "core/anime.h" |
2115488eb302
*: add very early season searcher
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
5 #include "core/date.h" |
2115488eb302
*: add very early season searcher
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
6 |
258 | 7 #include <string> |
250 | 8 #include <vector> |
15 | 9 |
63 | 10 namespace Services { |
11 namespace AniList { | |
15 | 12 |
44
619cbd6e69f9
filesystem: fix CreateDirectories function
Paper <mrpapersonic@gmail.com>
parents:
36
diff
changeset
|
13 bool AuthorizeUser(); |
9 | 14 |
15 /* Read queries */ | |
16 int GetAnimeList(); | |
17 | |
250 | 18 /* Search query */ |
19 std::vector<int> Search(const std::string& search); | |
327
b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
Paper <paper@paper.us.eu.org>
parents:
325
diff
changeset
|
20 bool GetSeason(Anime::Season season); |
250 | 21 |
9 | 22 /* Write queries (mutations) */ |
23 int UpdateAnimeEntry(int id); | |
15 | 24 |
63 | 25 } // namespace AniList |
26 } // namespace Services | |
15 | 27 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
28 #endif // MINORI_SERVICES_ANILIST_H_ |