WSGetInteger32List (C 函数)
int WSGetInteger32List(WSLINK link,int **a,int *n)
从由 link 指定的 WSTP 连接中获取一个32位整数列表,把整数存在数组 a,列表的长度存在 n 中.
更多信息
- WSGetInteger32List() 为整数数组分配内存. 必须调用 WSReleaseInteger32List() 释放该内存. 如果 WSGetInteger32List() 失败,函数的返回值表明一个错误,不要调用有 a 内容的 WSReleaseInteger32List().
- WSGetInteger32List() 返回不可变数据.
- 若发生错误,则 WSGetInteger32List() 返回0;若函数成功,则返回非零值.
- 若 WSGetInteger32List() 失败,则使用 WSError() 检索错误代码.
- WSTP 的标头文件 wstp.h 已对 WSGetInteger32List() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* read a list of 32-bit integers from a link */
void f(WSLINK lp)
{
int *data;
int length;
if(! WSGetInteger32List(lp, &data, &length))
{
/* unable to read the integer list from lp */
return;
}
/* ... */
WSReleaseInteger32List(lp, data, length);
}