WSPutData (C 関数)
int WSPutData(WSLINK link,const char *b,int count)
count バイトをバッファ b からlink で指定されたWSTP接続に置く.
例題
例 (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 */ }
}