WSPutInteger64List (C 函数)

int WSPutInteger64List(WSLINK link,const wsint64 *a,int n)

把从位置 a 开始的 n 个64位整数列表写入由 link 指定的 WSTP 连接.

更多信息

  • 若发生错误,则 WSPutInteger64List() 返回0;若函数成功,则返回非零值.
  • WSPutInteger64List() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSPutInteger64List() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* send a one-dimensional list of 64-bit integers to a link */

void f(WSLINK lp)
{
    mlint64 list[10], i;

    for(i = 0; i < 10; i++)
        list[i] = i;

    if(! WSPutInteger64List(lp, (mlint64 *)list, 10))
        { /* unable to send the list to lp */ }
}