MLReleaseUCS2ErrorMessage (C 関数)
MLReleaseUCS2ErrorMessageはWSReleaseUCS2ErrorMessageに置き換えられた.
void MLReleaseUCS2ErrorMessage(MLINK l, const unsigned short *m, int n)
MLUCS2ErrorMessage()によって割り当てられ,長さ n のUCS2 文字の配列である m に保存されたメモリを解放する.
詳細
- メッセージ m を保持するために使われたメモリは,MLUCS2ErrorMessage()への呼出しによって割り当てられたものでなければならない.
- MLReleaseUCS2ErrorMessage()は,MathLinkヘッダファイルmathlink.hで宣言される.
例題
例 (1)
#include "mathlink.h"
/* A function for getting the error message from a link */
void f(MLINK l)
{
const unsigned short *message;
int length;
message = MLUCS2ErrorMessage(l, &length);
if(message == (const unsigned short *)0 || length == 0)
{ /* Unable to get the error message from the link */ }
/* ... */
MLReleaseUCS2ErrorMessage(l, message, length);
}