WSPutSize (C 函数)

int WSPutSize(WSLINK link,int len)

指定写入 link 的文本数据的字节长度.

更多信息

  • 若发生错误,则 WSPutSize() 返回0;若函数成功,则返回非零值.
  • WSPutSize() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSPutSize() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

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

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

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

    if(! MPutData(lp, "Hello World!", strlen("Hello World!")))
        { /* Unable to put the string contents to lp */ }
}