|
SOLUTIONS
|
MATHEMATICA MATHLINK C 関数
MLReleaseUTF32String()
void MLReleaseUTF32String(MLINK link, const unsigned int *s, int len)
UTF-32でコード化された文字列s を保持するために,MLGetUTF32String()で割り当てられたメモリを解放する.
詳細詳細
- MLReleaseUTF32String()はMathLink ヘッダファイルmathlink.hの中で宣言される.
例題例題すべて開くすべて閉じる
例 (1)例 (1)
#include "mathlink.h"
/* read a UTF-32 encoded string from a link and then release the memory to MathLink for deallocation */
void f(MLINK lp)
{
const unsigned int *string;
int length;
if(! MLGetUTF32String(lp, &string, &length))
{ /* unable to read the UTF-32 encoded string from lp */ }
/* ... */
MLReleaseUTF32String(lp, string, length);
}
Mathematica 9 is now available!
New to Mathematica?
Find your learning path »
Have a question?
Ask support »
