mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
a27041c3ef
and I don't think people would appreciate losing their menus :)
9 lines
496 B
R
9 lines
496 B
R
#include "stringh.h"
|
|
|
|
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;
|