WSReleaseUTF8ErrorMessage (C 函数)

void WSReleaseUTF8ErrorMessage(WSLINK l, const unsigned char *m, int n)

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

更多信息

  • 被分配用来储存消息 m 的内存肯定已在调用 WSUTF8ErrorMessage() 时就被分配.
  • WSTP 的标头文件 wstp.h. 已对 WSReleaseUTF8ErrorMessage() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

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

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

    message = WSUTF8ErrorMessage(l, &length);
    if(message == (const unsigned char *)0 || length == 0)
    { /* Unable to read the error message from the link */ }

    /* ... */

    WSReleaseUTF8ErrorMessage(l, message, length);
}