Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > MathLink C Language Functions >
MathLink C Function

MLDestroyMark()

void MLDestroyMark(MLINK link, MLMARK mark)
destroys the specified mark on a link.
  • Calling MLDestroyMark() releases memory associated with the storage of expressions recorded after the mark.
  • MLDestroyMark() is declared in the MathLink header file mathlink.h.
#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);
}
© 2013 Wolfram Research, Inc. Japanese
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team