2.9.1.7. memory_NewString()

[<<<] [>>>]

This function should be used to allocate string variable.

pFixSizeMemoryObject memory_NewString(pMemoryObject pMo,
                                      unsigned long StringSize
  ){

The second argument specifies the length of th required string including.

The function checks the desired length and if this is small then is allocates a fix size object. If this is too large then it allocates a LARGE_BLOCK_TYPE


[<<<] [>>>]