WSUTF32ErrorMessage (C 函数)

const unsigned int * WSUTF32ErrorMessage(WSLINK l, int *n)

返回一个由 UTF-32 编码形式编码、长度为 n 的字符串,描述由 l 指定的 WSTP 连接上发生的最后一个错误.

更多信息

  • WSUTF32ErrorMessage() 为必须释放的消息字符串而分配内存. 使用 WSReleaseUTF32ErrorMessage() 来释放由 WSUTF32ErrorMessage() 分配的内存. 若 WSUTF32ErrorMessage() 返回 NULL,则不要使用 NULL 值调用 WSReleaseUTF32ErrorMessage().
  • 程序不应修改错误消息字符串的内容.
  • WSUTF32ErrorMessage() 返回的字符串包括了一个适合平台的字节顺序标记(byte order mark).
  • 字符串的长度 n 包括字节顺序标记.
  • WSTP 的标头文件 wstp.h 已对 WSUTF32ErrorMessage() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* A function for reading the error message from a link */

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

    message = WSUTF32ErrorMessage(l, &length);

    /* We check for length <= 1 because WSUTF32ErrorMessage() returns
    a byte order mark. */

    if(message == (const unsigned int *)0 || length <= 1)
    { /* Unable to read the error message from the link */ }

    /* ... */

    WSReleaseUTF32ErrorMessage(l, message, length);
}