MLClearError (C 関数)

MLClearErrorWSClearErrorに置き換えられた.

int MLClearError(MLINK link)

可能であれば 上のエラーをクリアする.

詳細

  • MLClearError()は作動していなかったリンクを作動させる.
  • MLClearError()は予期せずしてリンクが閉じられたことを示すMLEDEADのような重大なエラーに対して0を返す.
  • MLClearError()は無事に完了したときに0以外の値を返す.
  • MLClearError()は,MathLinkヘッダファイル mathlink.hで宣言される.

例題

  (1)

#include <stdio.h>
#include "mathlink.h"

/* send an integer to a link and check for an error */

void f(MLINK lp)
{
    if(! MLPutInteger(lp, 10))
    {
        printf("MathLink error: %s\n", MLErrorMessage(lp));
        MLClearError(lp);
    }
}