WSGetInteger16List (C 函数)

int WSGetInteger16List(WSLINK link,short **a,int *n)

从由 link 指定的 WSTP 连接中获取一个16位整数列表,把整数存在数组 a,列表的长度存在 n 中.

更多信息

  • WSGetInteger16List() 为整数数组分配内存. 必须调用 WSReleaseInteger16List() 释放该内存. 如果 WSGetInteger16List() 失败,函数的返回值表明一个错误,不要调用有 a 内容的 WSReleaseInteger16List().
  • WSGetInteger16List() 返回不可变数据.
  • 若发生错误,则 WSGetInteger16List() 返回0;若函数成功,则返回非零值.
  • WSGetInteger16List() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSGetInteger16List() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* read a list of 16-bit integers from a link */

void f(WSLINK lp)
{
    short *data;
    int length;

    if(! WSGetInteger16List(lp, &data, &length))
        {
            /* unable to read the integer list from lp */
            return;
        }

    /* ... */

    WSReleaseInteger16List(lp, data, length);
}