MLPutSize (C 函数)

MLPutSize 已经被 WSPutSize 所取代.

int MLPutSize(MLINK link,int len)

指定写入 link 的文本数据的字节长度.

更多信息

  • MLPutSize() 在错误事件中返回0,如果函数成功则返回非零值.
  • 如果 MLPutSize() 失败,则使用 MLError() 检索错误代码.
  • 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 */ }
}