MLPutSize (C 関数)

MLPutSizeWSPutSizeに置き換えられた.

int MLPutSize(MLINK link,int len)

link 上に置かれるテキストデータの長さをバイトで指定する.

詳細

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

例題

  (1)

#include "mathlink.h"

/* send the string "Hello World!" to a link */

void f(MLINK lp)
{
    if(! MLPutNext(lp, MLTKSTR))
        { /* unable to put the data type to lp */ }

    if(! MLPutSize(lp, strlen("Hello World!"))
        { /* unable to put the string size to lp */ }

    if(! MPutData(lp, "Hello World!", strlen("Hello World!")))
        { /* Unable to put the string contents to lp */ }
}