WSPutInteger16 (C 関数)

int WSPutInteger16(WSLINK link,int i)

16ビットの整数ilink で指定されたWSTP接続に置く.

詳細

  • 引数i は通常外部プログラムではshort型と宣言されるが,C言語のプロトタイプがない場合にも作動するように,WSPutInteger16()内ではint型と宣言されなければならない.
  • WSPutInteger16()はエラーがあると 0 を返し, 関数が成功すると0以外の値を返す.
  • WSError()を使うと,WSPutInteger16()が不成功の場合にエラーコードを引き出すことができる.
  • WSPutInteger16()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* send the expression Times[10,30] to a link */

void f(WSLINK lp)
{
    short a = 10;
    short b = 30;

    if(! WSPutFunction(lp, "Times", 2))
        { /* unable to put the function to lp */ }

    if(! WSPutInteger16(lp, a))
        { /* unable to put the integer to lp */ }

    if(! WSPutInteger16(lp, b))
        { /* unable to put the integer to lp */ }

    if(! WSEndPacket(lp))
        { /* unable to send the end-of-packet indicator to lp */ }

    if(! WSFlush(lp))
        { /* unable to flush outgoing data to lp */ }
}