Add IsPackEnded native (IsPackReadable replacement)

This commit is contained in:
Valentin Grünbacher
2015-03-30 03:56:26 +02:00
parent 9d4c02f7ca
commit 9abe6cd8f6
2 changed files with 25 additions and 0 deletions

View File

@ -141,6 +141,17 @@ native GetPackPosition(DataPack:pack);
*/
native SetPackPosition(DataPack:pack, position);
/**
* Returns if the datapack has reached its end and no more data can be read.
*
* @param pack Datapack handle
*
* @return True if datapack has reached the end, false otherwise
* @error If an invalid handle is provided, or the new position is
* out of datapack bounds, an error will be thrown.
*/
native bool:IsPackEnded(DataPack:pack);
/**
* Destroys the datapack and frees its memory.
*