summaryrefslogtreecommitdiff
path: root/cmake/Modules/FindVorbis.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/Modules/FindVorbis.cmake')
0 files changed, 0 insertions, 0 deletions
o the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include <iostream> #include "config.h" #include "json/json.h" #ifndef SERVERLIST_HEADER #define SERVERLIST_HEADER typedef Json::Value ServerListSpec; namespace ServerList { std::vector<ServerListSpec> getLocal(); #if USE_CURL std::vector<ServerListSpec> getOnline(); #endif bool deleteEntry(ServerListSpec server); bool insert(ServerListSpec server); std::vector<ServerListSpec> deSerialize(std::string liststring); std::string serialize(std::vector<ServerListSpec>); std::vector<ServerListSpec> deSerializeJson(std::string liststring); std::string serializeJson(std::vector<ServerListSpec>); #if USE_CURL void sendAnnounce(std::string action = "", u16 clients = 0, double uptime = 0, std::string gameid = ""); #endif } //ServerList namespace #endif