WSUCS2ErrorMessage (C 函数)
const unsigned short * WSUCS2ErrorMessage(WSLINK l, int *n)
返回一个长度为 n 的、编码形式为 UCS2 的字符字符串,描述由 l 指定的 WSTP 连接上发生的最后一个错误.
更多信息
- WSUCS2ErrorMessage() 分配必须通过调用 WSReleaseUCS2ErrorMessage() 来释放的内存.
- WSTP 的标头文件 wstp.h 已对 WSUCS2ErrorMessage() 作出声明.
范例
基本范例 (1)
#include "wstp.h"
/* A function for reading 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);
}