WSPutUTF32Function (C 函数)

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

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

更多信息

  • 在调用 WSPutUTF32Function() 之后,必须调用其他 WSTP 函数以传递该函数的参数.
  • 由 UTF-32 编码的函数名称 s 必须以一个字节顺序标记开始.
  • 符号名称 s 的长度必须包括字节顺序标记.
  • 若发生错误,则 WSPutUTF32Function() 返回0;若函数成功,则返回非零值.
  • WSPutUTF32Function() 失败,则使用 WSError() 检索错误代码.
  • WSTP 的标头文件 wstp.h.已对 WSPutUTF32Function() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

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

void f(WSLINK l)
{
    unsigned int name[5];

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

    if(! WSPutUTF32Function(l, (const unsigned int *)name, 5, 3))
    { /* Unable to write the function to the link */ }

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

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

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

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

    if(! WSFlush(l))
    { /* Unable to flush the outbound data to the link */ }
}