WSLinkEnvironment (C 関数)

WSENV WSLinkEnvironment(WSLINK l)

l で指定されたWSTP接続を作成した,WSTP環境オブジェクトを得る.

詳細

  • WSLinkEnvironment()はエラーがあった場合には,(WSENV)0を返す.
  • WSLinkEnvironment()は,WSTPヘッダファイルwstp.hの中で宣言される.

例題

  (1)

#include <stdio.h>
#include "wstp.h"

/* A function for printing WSTP error messages */

void f(WSLINK l)
{
    int error;

    if((error = WSError(l),error) != WSEOK)
    {
        printf("WSTP error: %s\n", WSErrorString(
            WSLinkEnvironment(l), error));
    }
}