MLUCS2ErrorMessage (C 関数)
MLUCS2ErrorMessageはWSUCS2ErrorMessageに置き換えられた.
const unsigned short * MLUCS2ErrorMessage(MLINK l, int *n)
l で指定されたMathLink接続上で最後に起ったエラーを説明する,長さ n のUCS2のコード形式でコード化された文字列を返す.
詳細
- MLUCS2ErrorMessage()は,MLReleaseUCS2ErrorMessage()を呼び出すことによって解放しなければならないメモリを割り当てる.
- MLUCS2ErrorMessage()は,MathLinkヘッダファイルmathlink.hで宣言される.
例題
例 (1)
#include "mathlink.h"
/* A function for reading 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);
}