WSIsLinkLoopback (C 函数)
int WSIsLinkLoopback( WSLINK l )
查询由 l 给出的 WSTP 连接,看该链接是否是回环链接(loopback link).
范例
基本范例 (1)
#include "wstp.h"
/* A function to close just loopback links */
void f(WSLINK l)
{
if(WSIsLinkLoopback(l))
WSClose(l);
}
int WSIsLinkLoopback( WSLINK l )
查询由 l 给出的 WSTP 连接,看该链接是否是回环链接(loopback link).
#include "wstp.h"
/* A function to close just loopback links */
void f(WSLINK l)
{
if(WSIsLinkLoopback(l))
WSClose(l);
}