WSUTF16LinkName (C 函数)

const unsigned short * WSUTF16LinkName(WSLINK l, int *n)

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

更多信息

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

范例

基本范例  (1)

#include "wstp.h"

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

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

    name = WSUTF16LinkName(l, &length);

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

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

    /* ... */

    WSReleaseUTF16LinkName(l, name, length);
}