WSClearError (C 関数)

int WSClearError(WSLINK link)

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

詳細

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

例題

  (1)

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

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

void f(WSLINK lp)
{
    if(! WSPutInteger(lp, 10))
    {
        printf("WSTP error: %s\n", WSErrorMessage(lp));
        WSClearError(lp);
    }
}