WSReleaseInteger64List (C 関数)
void WSReleaseInteger64List(WSLINK link,wstpint64 *a,int n)
長さn の配列a を保持するために,WSGetInteger64List()で割り当てられたメモリを解放する.
例題
例 (1)
#include "wstp.h"
/* read a list of 64-bit integers from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
wstpint64 *data;
int length;
if(! WSGetInteger64List(lp, &data, &length))
{ /* unable to read the list of integers from lp */ }
/* ... */
WSReleaseInteger64List(lp, data, length);
}
関連項目
C関数: WSGetInteger64List()
テクニカルノート
関連するガイド
履歴
2007 で導入 (6.0)