Merge pull request #97 from Arkshine/expose-set_amxstring_utf8

Expose set_amxstring_utf8 to AMXX API
This commit is contained in:
Vincent Herbet
2014-08-02 21:11:23 +02:00
41 changed files with 280 additions and 0 deletions

View File

@@ -1868,6 +1868,8 @@ void Module_CacheFunctions()
// String / mem in amx scripts support
REGISTER_FUNC("SetAmxString", set_amxstring)
REGISTER_FUNC("SetAmxStringUTF8Char", set_amxstring_utf8_char)
REGISTER_FUNC("SetAmxStringUTF8Cell", set_amxstring_utf8_cell)
REGISTER_FUNC("GetAmxString", MNF_GetAmxString)
REGISTER_FUNC("GetAmxStringLen", MNF_GetAmxStringLen)
REGISTER_FUNC("FormatAmxString", MNF_FormatAmxString)