WSReleaseUTF16String (C Function)
void WSReleaseUTF16String(WSLINK link,const unsigned short *s,int len)
disowns memory allocated by WSGetUTF16String() to store the UTF-16 encoded string s.
Examples
Basic Examples (1)
#include "wstp.h"
/* read a UTF-16 encoded string from a link and then release the memory to WSTP for deallocation */
void f(WSLINK lp)
{
const unsigned short *string;
int number_of_codes;
int number_of_characters;
if(! WSGetUTF16String(lp, &string, &number_of_codes, &number_of_characters))
{ /* unable to read the UTF-16 encoded string from lp */ }
/* ... */
WSReleaseUTF16String(lp, string, number_of_codes);
}