MLReleaseInteger16List (C 関数)

MLReleaseInteger16ListWSReleaseInteger16Listに置き換えられた.

void MLReleaseInteger16List(MLINK link,short *a,int n)

長さnの配列aを保持するために,MLGetInteger16List()で割り当てられたメモリを解放する.

詳細

  • MLReleaseInteger16List()は,MathLinkヘッダファイルmathlink.hの中で宣言される.

例題

  (1)

#include "mathlink.h"

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

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

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

    /* ... */

    MLReleaseInteger16List(lp, data, length);
}