CMNロゴ

ICmnPilot::QueryInterface Method


インターフェースを問合せます。

Syntax

HRESULT QueryInterface(
    const IID& iid,
    void **ppv
);

Parameters

iid

[in] 要求するインターフェースのID。

ppv

[out] インターフェースポインタを受け取るポインタ変数。

Return Value

要求されたインターフェースをサポートしていたら S_OK、サポートしてなかったら E_NOINTERFACE を戻します。

Remarks

CPXSDKの新バージョンを使用する際にその新インターフェースを問い合わせます。

Example

C++

          :
    ICmnPilot2 *pIPilot2;
    hr = pICmnPilot->QueryInterface (IID_CmnPilot2, (void **)&pIPilot2);
          :

Delphi

          :
    pIPilot2: ICmnPilot2;

    hr = pICmnPilot.QueryInterface (IID_CmnPilot2, pIPilot2);
          :



ICmnPilot