WSPutData (C 関数)

int WSPutData(WSLINK link,const char *b,int count)

count バイトをバッファ b からlink で指定されたWSTP接続に置く.

詳細

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

例題

  (1)

#include <string.h>
#include "wstp.h"

/* send "Hello World!" to a link */

void f(WSLINK lp)
{
    if(! WSPutNext(lp, WSTKSTR))
        { /* unable to put type WSTKSTR to lp */ }

    if(! WSPutSize(lp, strlen("Hello World!"))
        { /* unable to put the length of "Hello World!" to lp */ }

    if(! WSPutData(lp, "Hello World!", strlen("Hello World!")))
        { /* unable to put the data "Hello World!" to lp */ }
}