WSPutInteger8 (C 関数)

int WSPutInteger8(( WSLINK l , unsigned char i )

l で指定されたWSTP接続に8ビットの整数 i を置く.

詳細

  • WSPutInteger8()は,エラーが起った場合には0を,関数が成功した場合には非零の値を返す.
  • WSPutInteger8()が失敗した場合には,WSError()を使ってエラーコードを得るとよい.
  • WSPutInteger8()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* A function to send the expression Plus[3,126] to a link */

void f(WSLINK l)
{
    unsigned char a = 3;
    unsigned char b = 126;

    if(! WSPutFunction(l, "Plus", 2))
    { /* Unable to put the function to the link */ }

    if(! WSPutInteger8(l, a))
    { /* Unable to put the integer 3 to the link */ }

    if(! WSPutInteger8(l, b))
    { /* Unable to put the integer 126 to the link */ }

    if(! WSEndPacket(l))
    { /* Unable to send the end-of-packet indicator to the link */ }

    if(! WSFlush(l))
    { /* Unable to flush the outgoing data to the link */ }
}