WSPutUCS2Function (C 函数)

int WSPutUCS2Function(( WSLINK l , const unsigned short * s , int v , int n )

把一个函数写入由 l 指定的 WSTP 连接,该函数的标头由名称为 s、长度为 v、有 n 个参数并且由 UCS2 编码的符号给定.

更多信息

  • 在调用 WSPutUCS2Function() 之后,必须调用其他 WSTP 函数以传递该函数的参数.
  • 若发生错误,则 WSPutUCS2Function() 返回0;若函数成功,则返回非零值.
  • WSPutUCS2Function() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h. 已对 WSPutUCS2Function() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* A function to put a List[1,2,3] to the link */

void f(WSLINK l)
{
    unsigned short name[4];

    name[0] = 'L';
    name[1] = 'i';
    name[2] = 's';
    name[3] = 't';

    if(! WSPutUCS2Function(l, (unsigned short *)name, 4, 3))
    { /* Unable to put the function to the link */ }

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

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

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

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

    if(! WSFlush(l))
    { /* Unable to flush any buffered output data in the link */ }
}