MLEndPacket (C 関数)
MLEndPacketはWSEndPacketに置き換えられた.
int MLEndPacket(MLINK link)
式の流れの中に指標を挿入し,その指標で現行の式が完成し送信準備が整ったことを示す.
詳細
- MLEndPacket()は,式の頭部が標準パケットであるなしにかかわらず,任意のトップレベル式の終りを示すために呼び出す必要がある.
- MLEndPacket()はエラーがあると0を返し,関数が成功すると0以外の値を返す.
- MLError()を使うとMLEndPacket()が不成功の場合にエラーコードを引き出すことができる.
- MLEndPacket()は,MathLinkヘッダファイルmathlink.hの中で宣言される.
例題
例 (1)
#include "mathlink.h"
/* send the expression {10, Times[3.56, 10], 1.3} to a link */
void f(MLINK lp)
{
if(! MLPutFunction(lp, "List", 3))
{ /* unable to send the function List to lp */ }
if(! MLPutInteger32(lp, 10))
{ /* unable to send the integer 10 to lp */ }
if(! MLPutFunction(lp, Times, 2))
{ /* unable to send the function Times to lp */ }
if(! MLPutReal64(lp, 3.56))
{ /* unable to send the double 3.56 to lp */ }
if(! MLPutInteger32(lp, 10))
{ /* unable to send the integer 10 to lp */ }
if(! MLPutReal32(lp, 1.3))
{ /* unable to send the float 1.3 to lp */ }
if(! MLEndPacket(lp))
{ /* unable to send the end of packet message to lp */ }
}