"HUGEARR.H"

Broken C-Stubs (fixed in newer sdks?!):


Fixes for HugeArrayCreate:


asm push di
pself->HALI_arrayBlock = HugeArrayCreate(...);
asm pop di

Fixes for HugeArrayGetCount:


VMFileHandle vmFile;

vmFile = pself->HALI_vmFile; /****MODIFY ACCORDING TO YOUR PROGRAM!****/
asm push di
asm mov di, vmFile
numItems = HugeArrayGetCount(pself->HALI_vmFile,
pself->HALI_arrayBlock);
asm pop di

{Nathan Fiedler; sample code "harray.goc" to be found on the geoworks-dev-rel-www-page!}


Another Bug:

HugeArrayNext doesn't return a null pointer when you try to advance past the last element. It's supposed to.

{Edward di Geronimo Jr.}