[Half-Life AMXX] / include / celltrie.inc Repository:
ViewVC logotype

View of /include/celltrie.inc

Parent Directory Parent Directory | Revision Log Revision Log


Revision 44 - (download) (annotate)
Mon Oct 11 23:53:51 2010 UTC (13 years, 6 months ago) by ian
File size: 721 byte(s)
Imported AMXX 1.8.1
#if defined _celltrie_included
#endinput
#endif
#define _celltrie_included

enum Trie
{
	Invalid_Trie = 0
};


native Trie:TrieCreate();
native TrieClear(Trie:handle);

native TrieSetCell(Trie:handle, const key[], any:value);
native TrieSetString(Trie:handle, const key[], const value[]);
native TrieSetArray(Trie:handle, const key[], const any:buffer[], size);

native bool:TrieGetCell(Trie:handle, const key[], &any:value);
native bool:TrieGetString(Trie:handle, const key[], output[], outputsize);
native bool:TrieGetArray(Trie:handle, const key[], any:output[], outputsize);

native bool:TrieDeleteKey(Trie:handle, const key[]);
native bool:TrieKeyExists(Trie:handle, const key[]);
native TrieDestroy(&Trie:handle);


Contact
ViewVC Help
Powered by ViewVC 1.0.4