WSToLinkID (C 函数)

long WSToLinkID(WSLINK link)

返回 link 的 ID 号.

更多信息

  • ID 适于与 WSFromLinkID() 一起使用.
  • 若发生错误,则 WSToLinkID() 返回0;否则,返回正整数值.
  • WSTP 的标头文件 wstp.h 已对 WSToLinkID() 作出声明.

范例

基本范例  (1)

#include "wstp.h"

/* get the link id number */

void f(WSLINK lp)
{
    long idnumber;

    idnumber = WSToLinkID(lp);
    if(idnumber == 0)
        { /* unable to get the link id number */ }
}