Creates an array of primitive types.
HObject* __cdecl ArrayAlloc(int type, int cItems);
Returns an allocated array.
type | Primitive data type as defined in Native.h. The following types are supported:
T_BOOLEAN is a Boolean. T_BYTE is a Byte. T_CHAR is a Character. T_DOUBLE is a Double. T_FLOAT is a Float. T_INT is an Integer. T_LONG is a Long. T_SHORT is a Short. |
cItems | The number of items in the array. |