]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/dpdefs/menudefs.qh
Merge branch 'master' into terencehill/menu_weaponarena_selection_fix
[xonotic/xonotic-data.pk3dir.git] / qcsrc / dpdefs / menudefs.qh
1 #ifndef MENUDEFS_H
2 #define MENUDEFS_H
3
4 #pragma noref 1
5
6 #define true _true
7 #define false _false
8 #define TRUE _TRUE
9 #define FALSE _FALSE
10
11 #define spawn _spawn
12
13 #include "upstream/menudefs.qc"
14
15 #undef true
16 #undef false
17 #undef TRUE
18 #undef FALSE
19
20 #undef spawn
21
22 int(string str, string sub, int startpos) _strstrofs = #221;
23 #define strstrofs _strstrofs
24 int(string str, int ofs) _str2chr = #222;
25 #define str2chr _str2chr
26 string(int c, ...) _chr2str = #223;
27 #define chr2str _chr2str
28
29 int(string s1, string s2) _strcmp = #228;
30 #define strcmp _strcmp
31 int(string s1, string s2, int len) _strncmp = #228;
32 #define strncmp _strncmp
33 int(string s1, string s2) _strcasecmp = #229;
34 #define strcasecmp _strcasecmp
35 int(string s1, string s2, int len) _strncasecmp = #230;
36 #define strncasecmp _strncasecmp
37
38 int() _buf_create = #440;
39 #define buf_create _buf_create
40
41 #pragma noref 0
42
43 #endif