WSUTF8LinkName (C 函数)

const unsigned char * WSUTF8LinkName(WSLINK l, int *n)

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

更多信息

  • WSUTF8LinkName() 为必须释放的链接名称字符串分配内存. 为释放该内存,可用函数返回的值调用 WSReleaseUTF8LinkName(). 若 WSUTF8LinkName() returns NULL, do not call WSReleaseUTF8LinkName() on the NULL value.
  • 程序不应修改由 WSUTF8LinkName() 返回的字符串的内容.
  • WSTP 链接是使用链接模式、链接协议和其它选项的结合而创建的. 链接名称可为用来创建链接的链接模式和链接协议提供必要信息.
  • WSTP 的标头文件 wstp.h 已对 WSUTF8LinkName() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* A function for reading a link's name */

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

    name = WSUTF8LinkName(l, &length);

    if(name == (const unsigned char *)0 || length == 0)
    { /* Unable to get the name of the link */ }

    /* ... */

    WSReleaseUTF8LinkName(l, name, length);
}