]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/lib/urllib.qh
Merge branch 'drjaska/2809-splashdmgforcecalcfix' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / urllib.qh
1 #pragma once
2
3 // URI handles
4 const int URI_GET_DISCARD = 0;
5 const int URI_GET_IPBAN = 1;
6 const int URI_GET_IPBAN_END = 16;
7 const int URI_GET_CURL = 17;
8 const int URI_GET_CURL_END = 32;
9 const int URI_GET_UPDATENOTIFICATION = 33;
10 const int URI_GET_TOS = 34;
11 const int URI_GET_URLLIB = 128;
12 const int URI_GET_URLLIB_END = 191;
13
14 const float URL_READY_ERROR    = -1;
15 const float URL_READY_CLOSED   =  0;
16 const float URL_READY_CANWRITE =  1;
17 const float URL_READY_CANREAD  =  2;
18 // errors: -1, or negative HTTP status code
19 USING(url_ready_func, void (entity handle, entity pass, float status));
20
21 ERASEABLE
22 void url_single_fopen(string url, float mode, url_ready_func rdy, entity pass);
23 ERASEABLE
24 void url_fclose(entity e);
25 ERASEABLE
26 string url_fgets(entity e);
27 ERASEABLE
28 void url_fputs(entity e, string s);
29
30 // returns true if handled
31 ERASEABLE
32 float url_URI_Get_Callback(int id, float status, string data);
33 #define MIN_URL_ID URI_GET_URLLIB
34 #define NUM_URL_ID (URI_GET_URLLIB_END - URI_GET_URLLIB + 1)
35
36 ERASEABLE
37 void url_multi_fopen(string url, float mode, url_ready_func rdy, entity pass);