MLPutUCS2String (C 函数)
MLPutUCS2String 已经被 WSPutUCS2String 所取代.
int MLPutUCS2String(MLINK link,const unsigned short *s,int n)
把一 n 个16位 UCS-2 字符字符串写入由 link 指定的 MathLink 连接.
更多信息
- 假设所有字符为16位字符.
- 发送8位字符时,高阶字节为0.
- MLPutUCS2String() 在错误事件中返回0,如果函数成功则返回非零值.
- 如果 MLPutUCS2String() 失败,则使用 MLError() 检索错误代码.
- MLPutUCS2String() 在 MathLink 标头文件 mathlink.h 中被声明.
范例
基本范例 (1)
#include "mathlink.h"
/* send the string "Hello World" to a link */
void f(MLINK lp)
{
unsigned short str[11];
str[0] = 'H';
str[1] = 'e';
str[2] = 'l';
str[3] = 'l';
str[4] = 'o';
str[5] = ' ';
str[6] = 'W';
str[7] = 'o';
str[8] = 'r';
str[9] = 'l';
str[10] = 'd';
if(! MLPutUCS2String(lp, (const unsigned short *)str, 11))
{ /* unable to put the string to lp */ }
}