Thread
:
GlobalAlloc()
View Single Post
#
3
05-15-2004, 10:42
koyaan
Posts: n/a
why do you have to allocate so many small chunks?
cant you just pre-alloca te bigger chunks and make up your array of pointers
like
allocate big buff;
for(i=0; i<unameit; i++)
pointer[i] = buff + i*20;
cheers
koyaan
koyaan