WSUTF32LinkName (C 函数)

返回一个以 UTF-32 编码形式编码、长度为 n 的字符串,表示用来创建由 l 指定的 WSTP 连接的名称字符串.

更多信息

  • WSUTF32LinkName() 为必须释放的链接名称字符串分配内存. 为释放该内存,可用函数返回的值调用 WSReleaseUTF32LinkName(). 若 WSUTF32LinkName() 返回 NULL,则不要用 NULL 值调用 WSReleaseUTF32LinkName().
  • 程序不应修改由 WSUTF32LinkName() 返回的字符串的内容.
  • WSUTF32LinkName() 返回一个由适合平台的字节顺序标记(byte order mark)字符串.
  • 字符串长度 n 包括该字节顺序标记.
  • WSTP 链接是使用链接模式、链接协议和其它选项的结合而创建的. 链接名称可为用来创建链接的链接模式和链接协议提供必要信息.
  • WSTP 的标头文件 wstp.h. 已对 WSUTF32LinkName() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* A function for getting the name of a link */

void f(WSLINK l)
{
    const unsigned int *name;
    int length;

    name = WSUTF32LinkName(l, &length);

    /* We check for length <= 1 because WSUTF32LinkName returns a
    string with a byte order mark. */

    if(name == (const unsigned int *)0 || length <= 1)
    { /* Unable to read the name of the link */ }

    /* ... */

    WSReleaseUTF32LinkName(l, name, length);
}