MLEndPacket (C 函数)

MLEndPacket 已经被 WSEndPacket 所取代.

int MLEndPacket(MLINK link)

在表达式流中插入指示符,说明当前表达式是完整的且可以发送.

更多信息

  • MLEndPacket() 应被调用来指明任何顶层表达式的结束,无论其标头是否为一标准的程序包.
  • MLEndPacket() 在错误事件中返回0,如果函数成功则返回非零值.
  • 如果 MLEndPacket() 失败,则使用 MLError() 检索错误代码.
  • 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 */ }
}