WSServiceRef (C 函数)

是一个 WSTP 类型,包含服务发现浏览操作、服务解析操作或服务注册操作的参考基准.

更多信息

范例

基本范例  (1)

#include "wstp.h"

void BrowseCallbackFunction(WSENV env, WSServiceRef ref, int flag, const char *name, void *context);

WSServiceRef browseForServices(WSENV e)
{
    int apiResult = 0;
    WSServiceRef ref;

    apiResult = WSBrowseForLinkServices(e, BrowseCallbackFunction, NULL /* Use the default browse domain */, NULL /* do not use a context object this time */, &ref);
    if(apiResult != 0)
    { /* Handle the error */

    return ref;
}