MLReleaseUTF16String (C 函数)
MLReleaseUTF16String 已经被 WSReleaseUTF16String 所取代.
void MLReleaseUTF16String(MLINK link,const unsigned short *s,int len)
释放由 MLGetUTF16String() 分配的存储 UTF-16 编码的字符串 s 的内存.
范例
基本范例 (1)
#include "mathlink.h"
/* read a UTF-16 encoded string from a link and then release the memory to MathLink for deallocation */
void f(MLINK lp)
{
const unsigned short *string;
int number_of_codes;
int number_of_characters;
if(! MLGetUTF16String(lp, &string, &number_of_codes, &number_of_characters))
{ /* unable to read the UTF-16 encoded string from lp */ }
/* ... */
MLReleaseUTF16String(lp, string, number_of_codes);
}