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;
}