WSFromLinkID (C 函数)

WSLINK WSFromLinkID(WSENV env,long inumb)

在 WSTP 环境 env,返回具有 inumb ID 号的链接对象.

更多信息

  • 如果在环境 env 中没有链接对象具有 inumb ID 号,那么 WSFromLinkID() 返回 (WSLINK)0.
  • WSTP 的标头文件 wstp.h 已对 WSFromLinkID() 作出声明.

范例

基本范例  (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))
    {
        /* ... */
    }

    /* ... */
}