L_VecFree

#include "lvkrn.h"

L_LVKRN_API L_INT L_VecFree(pVector)

pVECTORHANDLE pVector;

/* pointer to a vector handle */

Frees storage allocated for the specified vector image.

Parameter

Description

pVector

Pointer to a vector handle referencing the vector image to free.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function should be called when your program no longer needs the vector data.

Required DLLs and Libraries

LVKRN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

L_VecInit, L_VecCopy, L_VecLoadFile

Example

This example loads a DXF file and convert into WMF.

L_INT VecFreeExample(
   L_TCHAR* pszDXFFile,
   L_TCHAR* pszWMFFile)
{
   L_INT nRet;
   VECTORHANDLE TmpVec;

   /* Load DXF file. */
   nRet = L_VecLoadFile( pszDXFFile, &TmpVec, NULL, NULL );
   if(nRet != SUCCESS)
      return nRet;

   /* Convert to WMF */
   nRet = L_VecSaveFile( pszWMFFile, &TmpVec, FILE_WMF, NULL );
   if(nRet != SUCCESS)
      return nRet;

   /* Free the vector */
   nRet = L_VecFree ( &TmpVec );

   return nRet;
}