]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/dpdefs/dpextensions.qh
Fix FL_WEAPON flag overlapping FL_JUMPRELEASED. This unintentional change was introdu...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / dpdefs / dpextensions.qh
1 #pragma once
2
3 #pragma noref 1
4
5 #define particleeffectnum __particleeffectnum
6 #define trailparticles __trailparticles
7 #define pointparticles __pointparticles
8
9 #include "upstream/dpextensions.qc"
10
11 #undef particleeffectnum
12 #undef trailparticles
13 #undef pointparticles
14
15 int(entity ent, string tagname) _gettagindex = #451;
16 #define gettagindex _gettagindex
17
18 int(string effectname) _particleeffectnum = #335;
19
20 int(string s, string separator1, ...) _tokenizebyseparator = #479;
21 #define tokenizebyseparator _tokenizebyseparator
22
23 int(string s) _tokenize_console = #514;
24 #define tokenize_console _tokenize_console
25
26 int(int i) _argv_start_index = #515;
27 #define argv_start_index _argv_start_index
28
29 int(int i) _argv_end_index = #516;
30 #define argv_end_index _argv_end_index
31
32 int(string s) _strlen = #114;
33 #define strlen _strlen
34
35 float(float skel, float bonenum) _skel_get_boneparent = #267;
36 #define skel_get_boneparent _skel_get_boneparent
37
38 float(float skel, string tagname) _skel_find_bone = #268;
39 #define skel_find_bone _skel_find_bone
40
41 float(string str, string sub, float startpos) _strstrofs = #221;
42 #define strstrofs _strstrofs
43
44 float(string str, float ofs) _str2chr = #222;
45 #define str2chr _str2chr
46
47 string(int c, ...) _chr2str = #223;
48 #define chr2str _chr2str
49
50 int(string s1, string s2) _strcmp = #228;
51 #define strcmp _strcmp
52
53 int(string s1, string s2, int len) _strncmp = #228;
54 #define strncmp _strncmp
55
56 int(string s1, string s2) _strcasecmp = #229;
57 #define strcasecmp _strcasecmp
58
59 int(string s1, string s2, int len) _strncasecmp = #230;
60 #define strncasecmp _strncasecmp
61
62 int() _buf_create = #460;
63 #define buf_create _buf_create
64
65 vector(float skel, float bonenum) _skel_get_boneabs_hidden = #270;
66 void(float skel, float bonenum, vector org) _skel_set_bone_hidden = #271;
67 vector(entity ent, float tagindex) _gettaginfo_hidden = #452;
68
69 #pragma noref 0