WSReleaseUTF16LinkName (C 函数)
void WSReleaseUTF16LinkName(WSLINK l, const unsigned short *n, int v)
释放 WSUTF16LinkName() 分配的内存,以保存 UTF-16 编码的链接名称 n,一个长度为 v 的数组.
更多信息
- 用于保持链接名称 n 的内存肯定已在调用 WSUTF16LinkName() 时被分配.
- WSTP 的标头文件 wstp.h. 已对 WSReleaseUTF16LinkName() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* A function for retrieving the name of a link */
void f(WSLINK l)
{
const unsigned short *name;
int length;
name = WSUTF16LinkName(l, &length);
/* We test for length <= 1 because WSUTF16LinkName()
returns a string with a byte order mark. */
if(name == (const unsigned short *)0 || length <= 1)
{ /* Unable to get the name of the link */ }
/* ... */
WSReleaseUTF16LinkName(l, name, length);
}