WSGetInteger64Array (C 関数)
詳細
- 配列 a はwsint64 と宣言されたC言語の配列のようにメモリにレイアウトされる.
- heads は,配列の各レベルに頭部として現れる記号名に対応する文字列のリストを返す.
- WSGetInteger64Array()は,WSReleaseInteger64Array()を呼び出して解放しなければならないメモリを割り当てる. WSGetInteger64Array()が不成功で関数の返す値がエラーを示す場合には,a のコンテンツについてWSReleaseInteger64Array()を呼び出してはならない.
- WSGetInteger64Array()は不変のデータを返す.
- WSGetInteger64Array()はエラーがあると0を返し,関数が成功すると0以外の値を返す.
- WSError()を使うと,WSGetInteger64Array()が不成功の場合にエラーコードを引き出すことができる.
- WSGetInteger64Array()は,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
/* read an array of 64-bit integers from a link */
void f(WSLINK lp)
{
wsint64 *data;
int *dims;
char **heads;
int d;
if(! WSGetInteger64Array(lp, &data, &dims, &heads, &d))
{
/* unable to get the array of 64-bit integers from lp */
return;
}
/* ... */
WSReleaseInteger64Array(lp, data, dims, heads, d);
}