mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Forgot to add the definitions for the stringhashes
This commit is contained in:
parent
757556022b
commit
afbd5d115b
1 changed files with 7 additions and 0 deletions
7
cs-code/stringh_def.qc
Normal file
7
cs-code/stringh_def.qc
Normal file
|
@ -0,0 +1,7 @@
|
|||
integer () StringHash_Create = #0;
|
||||
integer (integer hashid) StringHash_Destroy = #0;
|
||||
integer (integer hashid, string key, string value, integer value_id) StringHash_Set = #0;
|
||||
string (integer hashid, string key, integer value_id) StringHash_Get = #0;
|
||||
integer (integer hashid) StringHash_Length = #0;
|
||||
string (integer hashid, integer idx, integer value_id) StringHash_GetIdx = #0;
|
||||
integer (integer hashid, integer idx, string value, integer value_id) StringHash_SetIdx = #0;
|
Loading…
Reference in a new issue