WSErrorMessage (C 関数)

const char * WSErrorMessage(WSLINK link)

link 上で最も最近に発生したエラーを示す文字列を返す.

詳細

  • WSErrorMessage()は,解放されなければならないメッセージ文字列にメモリを割り当てる.WSErrorMessage()によって割り当てられたメモリを解放する場合には,WSReleaseErrorMessage()を使う.WSErrorMessage()NULLを返す場合には,NULLの値に対してWSReleaseErrorMessage()を呼び出してはならない.
  • WSErrorMessage()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* send the expression {10, Times[3.56, 10], 1.3} to a link */

void f(WSLINK lp)
{
    if(! WSPutFunction(lp, "List", 3))
        { /* unable to send the function List to lp */ }

    if(! WSPutInteger32(lp, 10))
        { /* unable to send the integer 10 to lp */ }

    if(! WSPutFunction(lp, Times, 2))
        { /* unable to send the function Times to lp */ }

    if(! WSPutReal64(lp, 3.56))
        { /* unable to send the double 3.56 to lp */ }

    if(! WSPutInteger32(lp, 10))
        { /* unable to send the integer 10 to lp */ }

    if(! WSPutReal32(lp, 1.3))
        { /* unable to send the float 1.3 to lp */ }

    if(! WSEndPacket(lp))
        { /* unable to send the end of packet message to lp */ }
}