WSReleaseLinkName (C 関数)
void WSReleaseLinkName( WSLINK l , const char * n )
WSLinkName()によって割り当てられたメモリを解放して,l で指定されたWSTP接続のために,リンク名 n を保存する.
詳細
- 名前 n によって使われたメモリは,WSLinkName()への呼出しによって作成されたものでなければならない.
- WSReleaseLinkName()は,WSTPヘッダファイルwstp.hの中で宣言される.
例題
例 (1)
#include "wstp.h"
int main(int argc, char **argv)
{
WSENV env;
WSLINK link;
int error;
const char *name;
env = WSInitialize((WSEnvironmentParameter)0);
if(env == (WSENV)0)
{ /* Unable to create the WSTP environment object */ }
link = WSOpenArgcArgv(env, argc, argv, &error);
if(link == (WSLINK)0 || error != WSEOK)
{ /* Unable to create link */ }
WSActivate(link);
name = WSLinkName(link);
if(name == (const char *)0)
{ /* Unable to get the link name */ }
/* ... */
WSReleaseLinkName(link, name);
/* ... */
WSClose(link);
WSDeinitialize(env);
return 0;
}