L_LVKRN_API L_INT L_VecInit(pVector)
Initializes the fields in a vector handle.
Pointer to the vector handle to be initialized.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
You must call this function before calling L_VecCopy.
Required DLLs and Libraries
This example will make a copy of a vector handle.
L_LTVKRNTEX_API L_INT VecInitExample(pVECTORHANDLE pVector)
{
VECTORHANDLE TmpVector; /* Temporary vector handle */
L_INT nRet; /* Return value */
/* Initiate the temporary vector handle */
nRet = L_VecInit( &TmpVector );
if(nRet != SUCCESS)
return nRet;
/* Make a copy */
nRet = L_VecCopy( &TmpVector, pVector, VECTOR_FLAGS_REPLACE );
if( nRet != SUCCESS )
return nRet;
/*
...
Do something with TmpVector
...
*/
/* Destroy temporary vector before returning. */
nRet = L_VecFree( &TmpVector );
return nRet;
}