MLPutByteSymbol (C 函数)

MLPutByteSymbol 已经被 WSPutByteSymbol 所取代.

int MLPutByteSymbol(MLINK link,const unsigned char *s,long l)

把由长度为 l 的字符字符串 s 给定名称的符号写入由 link 指定的 MathLink 连接.

更多信息

  • MLPutByteSymbol() 可以8比特传递所有字符.
  • 字符字符串不需要使用零字节结尾.
  • MLPutByteSymbol() 在错误事件中返回0,如果函数成功则返回非零值.
  • 如果 MLPutByteSymbol() 失败,则使用 MLError() 检索错误代码.
  • MLPutByteSymbol() 在 MathLink 标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include "mathlink.h"

/* send the expression Integrate[Cos[y],y] to a link */

void f(MLINK lp)
{
    if(! MLPutFunction(lp, "Integrate", 2))
        { /* unable to put the function to lp */ }

    if(! MLPutFunction(lp, "Cos", 1))
        { /* unable to put the function to lp */ }

    if(! MLPutByteSymbol(lp, "y", 1))
        { /* unable to put the symbol to lp */ }

    if(! MLPutByteSymbol(lp, "y", 1))
        { /* unable to put the symbol to lp */ }

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

    if(! MLFlush(lp))
        { /* unable to flush any outgoing data buffered in lp */ }
}