MLPutData (C 函数)

MLPutData 已经被 WSPutData 所取代.

int MLPutData(MLINK link,const char *b,int count)

把来自于缓冲区 bcount 个字节写入由 link 指定的 MathLink 连接.

更多信息

  • MLPutData() 在错误事件中返回0,如果函数成功则返回非零值.
  • 如果 MLPutData() 失败,则使用 MLError() 检索错误代码.
  • MLPutData() 在 MathLink 标头文件 mathlink.h 中被声明.

范例

基本范例  (1)

#include <string.h>
#include "mathlink.h"

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

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

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

    if(! MLPutData(lp, "Hello World!", strlen("Hello World!")))
        { /* unable to put the data "Hello World!" to lp */ }
}