WSGetInteger8List (C 函数)
int WSGetInteger8List( WSLINK l , unsigned char ** i , int * c )
从由 l 指定的 WSTP 连接中获取一个8位整数的列表,整数存于数组 i 中,列表长度存于 c 中.
更多信息
- WSGetInteger8List() 为整数数组分配内存. 必须调用 WSReleaseInteger8List() 以释放这些内存. 若 WSGetInteger8List() 失败且函数返回值说明存在错误,则不要调用有 i 内容的 WSReleaseInteger8List().
- WSGetInteger8List() 会返回不可变数据.
- 若发生错误,则 WSGetInteger8List() 返回0;若函数成功,则返回非零值.
- 若 WSGetInteger8List() 失败,则使用 WSError() 检索错误代码.
- WSTP 的标头文件 wstp.h 已对 WSGetInteger8List() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* A function for reading a list of 8-bit integers from a link */
void f(WSLINK l)
{
unsigned char *data;
int length;
if(! WSGetInteger8List(l, &data, &length))
{ /* Unable to read the integer list from the link */ }
/* ... */
WSReleaseInteger8List(l, data, length);
}