WSReleaseUTF16ErrorMessage (C 函数)

void WSReleaseUTF16ErrorMessage(WSLINK l, const unsigned short *m, int n)

释放 WSUTF16ErrorMessage() 分配的内存,以在长度为 n 的数组 m 中储存 UTF-16 编码的消息.

更多信息

  • 用于包含消息 m 的内存肯定已在调用 WSUTF16ErrorMessage() 时被创建.
  • WSTP 的标头文件 wstp.h. 已对 WSReleaseUTF16ErrorMessage() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* A function to retrieve the error message from a link */

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

    message = WSUTF16ErrorMessage(l, &length);

    /* We test for length <= 1 because WSUTF16Error message
    returns a string that begins with a byte order mark */

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

    /* ... */

    WSReleaseUTF16ErrorMessage(l, message, length);
}