WSReleaseUTF8ErrorMessage (C 関数)

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

WSUTF8ErrorMessage()によって割り当てられたメモリを解放して,長さ n の配列である m にUTF-8でコード化されたメッセージを保存する.

詳細

  • メッセージ m を保持するために使われたメモリは,WSUTF8ErrorMessage()への呼出しによって割り当てられたものでなければならない.
  • WSReleaseUTF8ErrorMessage()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (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);
}