WSReleaseUCS2LinkName (C 関数)

void WSReleaseUCS2LinkName(WSLINK l, const unsigned short *n, int v)

WSUCS2LinkName()によって割り当てられたメモリを解放して,UCS2でコード化された長さ v のリンク名 n を保存する.

詳細

  • リンク名 n を保存するために使われたメモリは,WSUCS2LinkName()への呼出しによって割り当てられたものでなければならない.
  • WSReleaseUCS2LinkName()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* A function for reading the name of a link */

void f(WSLINK l)
{
    const unsigned short *name;
    int length;

    name = WSUCS2LinkName(l, &length);
    if(name == (const unsigned short *)0 || length == 0)
    { /* Unable to retrieve the link name */ }

    /* ... */

    WSReleaseUCS2LinkName(l, name, length);
}