WSReleaseUTF32ErrorMessage (C 関数)

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

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

詳細

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

例題

  (1)

#include "wstp.h"

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

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

    message = WSUTF32ErrorMessage(l, &length);

    /* We check for length <= 1 here because WSUTF32ErrorMessage
    returns a string with a byte order mark. */

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

    /* ... */

    WSReleaseUTF32ErrorMessage(l, message, length);
}