WSReleaseUTF32LinkName (C 函数)

void WSReleaseUTF32LinkName(WSLINK l, const unsigned int *n, int v)

释放由 WSUTF32LinkName() 分配的内存,来储存 UTF-32 编码的链接名称 n,一个长度为 v 的数组.

更多信息

  • 被分配来储存链接名称 n 的内存肯定已在调用 WSUTF32LinkName() 时就被分配.
  • WSTP 的标头文件 wstp.h 已对 WSReleaseUTF32LinkName() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

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

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

    name = WSUTF32LinkName(l, &length);

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

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

    /* ... */

    WSReleaseUTF32LinkName(l, name, length);
}