WSReleaseInteger16List (C 函数)
void WSReleaseInteger16List(WSLINK link,short *a,int n)
释放由 WSGetInteger16List() 分配的存储长度为 n 的数组 a 的内存.
范例
基本范例 (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 length;
if(! WSGetInteger16List(lp, &data, &length))
{ /* unable to read the list of integers from lp */ }
/* ... */
WSReleaseInteger16List(lp, data, length);
}