WSReleaseUCS2ErrorMessage (C 函数)
void WSReleaseUCS2ErrorMessage(WSLINK l, const unsigned short *m, int n)
释放储存在 m 中并由 WSUCS2ErrorMessage() 分配的内存,m 为一个长度为 n 的 UCS2 字符的数组.
更多信息
- 用于保持消息 m 的内存肯定已在调用 WSUCS2ErrorMessage() 时被分配.
- WSTP 的标头文件 wstp.h 已对 WSReleaseUCS2ErrorMessage() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* A function for getting the error message from a link */
void f(WSLINK l)
{
const unsigned short *message;
int length;
message = WSUCS2ErrorMessage(l, &length);
if(message == (const unsigned short *)0 || length == 0)
{ /* Unable to get the error message from the link */ }
/* ... */
WSReleaseUCS2ErrorMessage(l, message, length);
}