WSPutInteger16 (C 函数)

int WSPutInteger16(WSLINK link,int i)

把16位整数 i 写入由 link 指定的 WSTP 连接.

更多信息

  • 自变量 x 在外部程序中一般被声明为 short,但是在 WSPutInteger16() 中必须声明为 int,以便于在没有 C 原型的情况下也可以用.
  • 若发生错误,则 WSPutInteger16() 返回0;若函数成功,则返回非零值.
  • 如果 WSPutInteger16() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h 已对 WSPutInteger16() 作出声明.

范例

基本范例  (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 */ }
}