WSReleaseInteger32Array (C 函数)
void WSReleaseInteger32Array(WSLINK link,int *a,int *dims,char **heads,int d)
释放由 WSGetInteger32Array() 分配的存储维数为 dims 和标头为 heads 的数组 a 的内存.
范例
基本范例 (1)
#include "wstp.h"
/* read an array of 32-bit integers from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
int *data;
int *dimensions;
char **heads;
int depth;
if(! WSGetIntegerArray(lp, &data, &dimensions, &heads))
{ /* unable to read the integer array from lp */ }
/* ... */
WSReleaseInteger32Array(lp, data, dimensions, heads, depth);
}