MLPutUTF32String (C 関数)
MLPutUTF32StringはWSPutUTF32Stringに置き換えられた.
int MLPutUTF32String(MLINK link,const unsigned int *s,int len)
長さ len のUTF-32文字列 s を,link で指定されたMathLink接続に置く.
詳細
- MLPutUTF32String()はエラーがあると0を返し,関数が成功すると0以外の値を返す.
- 文字列 s は,バイトオーダーマークで始まらなければならない.
- 文字列の長さ len には,バイトオーダーマークが含まれなければならない.
- MLError()を使うと,MLPutUTF32String()が不成功の場合にエラーコードを引き出すことができる.
- MLPutUTF32String()は,MathLinkヘッダファイルmathlink.hの中で宣言される.
例題
例 (1)
#include "mathlink.h"
/* send the expression N[10/Sin[2]] as a UTF-32 string to a link */
void f(MLINK lp)
{
unsigned int expr[13];
expr[0] = 0xFEFF;
expr[1] = 'N';
expr[2] = '[';
expr[3] = '1';
expr[4] = '0';
expr[5] = '/';
expr[6] = 'S';
expr[7] = 'i';
expr[8] = 'n';
expr[9] = '[';
expr[10] = '2';
expr[11] = ']';
expr[12] = ']';
if(! MLPutFunction(lp, "EvaluatePacket", 1))
{ /* unable to put the function to lp */ }
if(! MLPutFunction(lp, "ToExpression", 1))
{ /* unable to put the function to lp */ }
if(! MLPutUTF32String(lp, (const unsigned int *)expr, 13))
{ /* unable to put the expression string to lp */ }
if(! MLEndPacket(lp))
{ /* unable to put the end-of-packet indicator to lp */ }
if(! MLFlush(lp))
{ /* unable to flush any outgoing data buffered in lp */ }
}