Mathematica > Systems Interfaces & Deployment > C/C++ Language Interface > MathLink C Language Functions >
Mathematica > Systems Interfaces & Deployment > MathLink API > MathLink C Language Functions >
MathLink C Function

MLGetInteger16List()

int MLGetInteger16List(MLINK link, short **a, int *n)
gets a list of 16-bit integers from the MathLink connection specified by link, storing the integers in the array a and the length of the list in n.
  • MLGetInteger16List() allocates memory for the array of integers. You must call MLReleaseInteger16List() to disown this memory. If MLGetInteger16List() fails and the function's return value indicates an error, do not call MLReleaseInteger16List() on the contents of a.
  • MLGetInteger16List() returns immutable data.
  • MLGetInteger16List() returns 0 in the event of an error, and a nonzero value if the function succeeds.
  • Use MLError() to retrieve the error code if MLGetInteger16List() fails.
  • MLGetInteger16List() is declared in the MathLink header file mathlink.h.
#include "mathlink.h"

/* read a list of 16-bit integers from a link */

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

    if(! MLGetInteger16List(lp, &data, &length))
        {
            /* unable to read the integer list from lp */
            return;
        }

    /* ... */

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