MLPutArgCount (C 関数)

MLPutArgCountWSPutArgCountに置き換えられた.

int MLPutArgCount(MLINK link,int n)

link 上に置かれる合成関数の引数の数を指定する.

詳細

  • MLPutArgCount()はエラーがあると0を返し, 関数が成功すると0以外の値を返す.
  • MLError()を使うと,MLPutArgCount()が不成功の場合にエラーコードを引き出すことができる.
  • MLPutArgCount()は,MathLinkヘッダファイルmathlink.hの中で宣言される.

例題

  (1)

#include "mathlink.h"

/* send Plus[2,3] over a link */

void f(MLINK lp)
{
    if(! MLPutType(lp, MLTKFUNC))
        { /* unable to send the function type to lp */ }

    if(! MLPutArgCount(lp, 2))
        { /* unable to put the number of arguments to lp */ }

    if(! MLPutSymbol(lp, "Plus"))
        { /* unable to put the symbol to lp */ }

    if(! MLPutInteger(lp, 2))
        { /* unable to put the integer to lp */ }

    if(! MLPutInteger(lp, 3))
        { /* unable to put the integer to lp */ }

    if(! MLEndPacket(lp))
        { /* unable to send the end-of-packet indicator */ }

    if(! MLFlush(lp))
        { /* unable to flush the link-output buffer */ }
}