WSReleaseByteArray (C 関数)
バージョン10.0より,WSReleaseByteArray()はWSReleaseInteger8Array()に取って代わられた.
void WSReleaseByteArray(WSLINK link,unsigned char *a,int *dims,char **heads,int d)
配列a,その次元dims,そして頭部heads を保持するために,WSGetByteArray()で割り当てられたメモリを解放する.
例題
例 (1)
#include "wstp.h"
/* read an array of integers each of size 1 byte and then release that memory to WSTP for deallocation */
void f(WSLINK lp)
{
unsigned char *data;
int *dimensions;
char **heads;
int depth;
if(! WSGetByteArray(lp, &data, &dimensions, &heads, &depth))
{ /* unable to read array from lp */ }
/* ... */
WSReleaseByteArray(lp, data, dimensions, heads, depth);
}