aboutsummaryrefslogtreecommitdiff
path: root/models/blender/mbb/modern_wagong_uv.blend
diff options
context:
space:
mode:
authororwell96 <mono96.mml@gmail.com>2016-10-22 20:32:02 +0200
committerorwell96 <mono96.mml@gmail.com>2016-10-22 20:32:02 +0200
commita3d8c3ae16021881b0b39cfe473f16ae62f5f81e (patch)
tree3acc2f234e9b7746fba53fd1e26ae127e175d655 /models/blender/mbb/modern_wagong_uv.blend
parent7f92ac4bd2874d4609a50c95554cf5b956a52803 (diff)
parentdef57bcab87d57285b194827e63e734004eb3bfb (diff)
downloadadvtrains-a3d8c3ae16021881b0b39cfe473f16ae62f5f81e.tar.gz
advtrains-a3d8c3ae16021881b0b39cfe473f16ae62f5f81e.tar.bz2
advtrains-a3d8c3ae16021881b0b39cfe473f16ae62f5f81e.zip
Merge branch 'master' of https://github.com/orwell96/advtrains
Diffstat (limited to 'models/blender/mbb/modern_wagong_uv.blend')
0 files changed, 0 insertions, 0 deletions
1 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include <vector> #include "util/string.h" #include "config.h" // These can be used in place of "caller" in to specify special handling. // Discard result (used as default value of "caller"). #define HTTPFETCH_DISCARD 0 // Indicates that the result should not be discarded when performing a // synchronous request (since a real caller ID is not needed for synchronous // requests because the result does not have to be retrieved later). #define HTTPFETCH_SYNC 1 // Print response body to console if the server returns an error code. #define HTTPFETCH_PRINT_ERR 2 // Start of regular allocated caller IDs. #define HTTPFETCH_CID_START 3 // Methods enum HttpMethod : u8 { HTTP_GET, HTTP_POST, HTTP_PUT, HTTP_DELETE, }; struct HTTPFetchRequest { std::string url = ""; // Identifies the caller (for asynchronous requests)