Define post-fix arrays as determinate and pre-fix arrays as indeterminate.

This commit is contained in:
David Anderson
2014-11-07 22:39:00 -08:00
parent a8796543af
commit 70e095f320
9 changed files with 109 additions and 28 deletions
+2 -2
View File
@@ -70,7 +70,7 @@ native void WritePackFloat(Handle pack, float val);
* @noreturn
* @error Invalid handle.
*/
native void WritePackString(Handle pack, const char str[]);
native void WritePackString(Handle pack, const char[] str);
/**
* Packs a function pointer into a data pack.
@@ -109,7 +109,7 @@ native float ReadPackFloat(Handle pack);
* @noreturn
* @error Invalid handle, or bounds error.
*/
native void ReadPackString(Handle pack, char buffer[], maxlen);
native void ReadPackString(Handle pack, char[] buffer, maxlen);
/**
* Reads a function pointer from a data pack.