WSReleaseInteger16Array (C 函数)

void WSReleaseInteger16Array(WSLINK link,short *a,int *dims,char **heads,int d)

释放由 WSGetInteger16Array() 分配的存储维数为 dims 和标头为 heads 的数组 a 的内存.

更多信息

  • WSTP 的标头文件 wstp.h 已对 WSReleaseInteger16Array() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

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

void f(WSLINK lp)
{
    short *data;
    int *dimensions;
    char **heads;
    int depth;

    if(! WSGetInteger16Array(lp, &data, &dimensions, &heads, &depth))
        { /* unable to read the array of integers from lp */ }

    /* ... */

    WSReleaseInteger16Array(lp, data, dimensions, heads, depth);
}