MLReleaseUTF16String (C 関数)

MLReleaseUTF16StringWSReleaseUTF16Stringに置き換えられた.

void MLReleaseUTF16String(MLINK link,const unsigned short *s,int len)

UTF-16でコード化された文字列s を保持するために,MLGetUTF16String()で割り当てられたメモリを解放する.

詳細

  • MLReleaseUTF16String()は,MathLinkヘッダファイルmathlink.hの中で宣言される.

例題

  (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);
}