LVectorBase::Free

#include "ltwrappr.h"

virtual L_INT LVectorBase::Free(void)

Frees the memory allocated for the vector data.

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

Call this function to free the memory allocated for the vector data. This function should be called when your program no longer needs the vector data. If the vector was allocated in disk memory, this function deletes the temporary file. If the vector has a palette, it will be deleted. After this function returns, the internal vector handle will be invalidated.

Note: You do not have to call LVectorBase::Free unless you explicitly want to free the memory. The class object will automatically free the vector when it is destroyed.

Required DLLs and Libraries

See Also

Functions

Topics

Example

L_INT LVectorBase__FreeExample(HWND hWnd) 
{ 
   UNREFERENCED_PARAMETER(hWnd); 
 
   L_INT          nRet; 
   LVectorBase*   pVector = new(LVectorBase); 
 
   nRet = pVector->Load(MAKE_IMAGE_PATH(TEXT("random.dxf"))); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   //do some stuff 
 
   //Free the vector 
   nRet = pVector->Free(); 
   if(nRet != SUCCESS) 
      return nRet; 
 
   return SUCCESS; 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Vector C++ Class Library Help