WSGetInteger64List (C 関数)
詳細
- WSGetInteger64List()は整数の配列にメモリを割り当てる.このメモリを開放するためにはWSReleaseInteger64List()を呼び出さなくてはならない.WSGetInteger64List()が不成功で関数の返す値がエラーを示す場合には,a のコンテンツについてWSReleaseInteger64List()を呼び出してはならない.
- WSGetInteger64List()は不変のデータを返す.
- WSGetInteger64List()はエラーがあると0を返し,関数が成功すると0以外の値を返す.
- WSError()を使うと,WSGetInteger64List()が不成功の場合にエラーコードを引き出すことができる.
- WSGetInteger64List()は,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
/* read a list of 64-bit integers from a link */
void f(WSLINK lp)
{
wsint64 *data;
int length;
if(! WSGetInteger64List(lp, &data, &length))
{
/* unable to read the integer list from lp */
return;
}
/* ... */
WSReleaseInteger64List(lp, data, length);
}