1 2 3 4 5 6 7 8 9
#include <string> #include <fstream> #include <emscripten/fetch.h> namespace storage { bool read(std::string key, size_t data_size, char *data); bool write(std::string key, size_t data_size, const char *data); int download(std::string key, std::string url); }
Generated with cgit - Back to sebastiano.tronto.net