CArchive::SetLoadParams
Visual Studio 2005
Call SetLoadParams when you are going to read a large number of CObject-derived objects from an archive.
void SetLoadParams( UINT nGrowBy = 1024 );
Parameters
- nGrowBy
-
The minimum number of element slots to allocate if a size increase is necessary.
CArchive uses a load array to resolve references to objects stored in the archive. SetLoadParams allows you to set the size to which the load array grows.
You must not call SetLoadParams after any object is loaded, or after MapObject or ReadObject is called.