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

MLReleaseInteger32List()

void MLReleaseInteger32List(MLINK link, int *a, int n)
disowns memory allocated by MLGetInteger32List() to store the array a of length n.
  • MLReleaseInteger32List() is declared in the MathLink header file mathlink.h.
#include "mathlink.h"

/* read a list of 32-bit integers from a link and then release the memory to MathLink for deallocation */

void f(MLINK lp)
{
    int *data;
    int length;

    if(! MLGetInteger32List(lp, &data, &length))
        { /* unable to read the list of integers from lp */ }

    /* ... */

    MLReleaseInteger32List(lp, data, length);
}
© 2013 Wolfram Research, Inc. Japanese
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team