WSFromLinkID (C 関数)

WSLINK WSFromLinkID(WSENV env,long inumb)

WSTP環境 env の中でID番号 inumb が付いたリンクオブジェクトを返す.

詳細

  • 環境 env 内のリンクオブジェクトにID番号 inumb が付いていない場合は,WSFromLinkID()(WSLINK)0を返す.
  • WSFromLinkID()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include "wstp.h"

/* read data from the link represented by id */

void f(WSENV env, long id)
{
    WSLINK lp;

    lp = WSFromLinkID(env, id);
    if(lp == (WSLINK)0)
        { /* unable to get the link from the id number */ }

    /* determine the type of data on lp */
    switch(WSGetNext(lp))
    {
        /* ... */
    }

    /* ... */
}