MLDestroyMark (C Function)
MLDestroyMark has been replaced by WSDestroyMark.
Details
- Calling MLDestroyMark() releases memory associated with the storage of expressions recorded after the mark.
- MLDestroyMark() is declared in the MathLink header file mathlink.h.
Examples
Basic Examples (1)
#include "mathlink.h"
/* create a mark in a link, read some data, then back up */
void f(MLINK lp)
{
MLMARK mark;
mark = MLCreateMark(lp);
if(mark == (MLMARK)0)
{ /* mark creation failed */ }
/* read data from the link */
MLSeekToMark(lp, mark, 0);
MLDestroyMark(lp, mark);
}