WSReleaseUTF32String (C 関数)
void WSReleaseUTF32String(WSLINK link,const unsigned int *s,int len)
UTF-32でコード化された文字列s を保持するために,WSGetUTF32String()で割り当てられたメモリを解放する.
例題
例 (1)
#include "wstp.h"
/* read a UTF-32 encoded string from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
const unsigned int *string;
int length;
if(! WSGetUTF32String(lp, &string, &length))
{ /* unable to read the UTF-32 encoded string from lp */ }
/* ... */
WSReleaseUTF32String(lp, string, length);
}