WSPutInteger16List (C 関数)

int WSPutInteger16List(WSLINK link,const short *a,int n)

の場所から始まる 個の16ビットの整数のリストを, で指定されたWSTP接続に置く.

詳細

  • WSPutInteger16List()はエラーがあると0を返し,関数が成功すると0以外の値を返す.
  • WSError()を使うと,WSPutInteger16List()が不成功の場合にエラーコードを引き出すことができる.
  • WSPutInteger16List()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

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

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

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

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