Add any tag to WritePackCell and ReadPackCell natives (bug 6001, r=asherkin)

This commit is contained in:
Kyle Sanderson 2014-01-17 23:14:40 -05:00
parent 7c1fb6e5b9
commit fb734e4124

View File

@ -50,7 +50,7 @@ native Handle:CreateDataPack();
* @noreturn
* @error Invalid handle.
*/
native WritePackCell(Handle:pack, cell);
native WritePackCell(Handle:pack, any:cell);
/**
* Packs a float into a data pack.
@ -79,7 +79,7 @@ native WritePackString(Handle:pack, const String:str[]);
* @return Cell value.
* @error Invalid handle, or bounds error.
*/
native ReadPackCell(Handle:pack);
native any:ReadPackCell(Handle:pack);
/**
* Reads a float from a data pack.