前のページ次のページ上に戻るホーム SophiaFramework UNIVERSE 5.3
SFBBTSDP
IBTSDP インターフェースのラッパークラスです。
#include <SFBBTSDP.h.hpp>
class SFBBTSDP : public SFBQuery;
SFMTYPEDEFWRAPPER(SFBBTSDP)

継承図

SFBBTSDP クラスの継承図

バージョン

BREW 2.0 BREW 2.1 BREW 3.1 BREW 4.0
× ×

参照

BREW API IBTSDP

メンバ

パブリック関数
SFCError DiscoverDevices( SFXCallbackPtr callback , AEEBTDeviceListResult* result )
Bluetooth デバイスの検出を開始します。
SFCError GetDeviceName( AEEBTAddr* addr , SFXCallbackPtr callback , AEEBTDeviceNameResult* result )
指定したデバイスの Bluetooth 名をコールバックで取得します。
SFCError GetRemoteServerChannel( AEEBTAddr* addr , UInt16 serviceClass , SFXCallbackPtr callback , AEEBTServerChannelResult* result )
Bluetooth サーバーチャネルをコールバックで取得します。
static
SFBBTSDPSmp
NewInstance( SFCErrorPtr exception = null )
SFBBTSDP インスタンスを生成します。
static
SFBBTSDPSmp
NewInstance( AEECLSID id , SFCErrorPtr exception = null )
SFBBTSDP インスタンスを生成します。
SFCError QueryInterface( AEECLSID clsid , VoidHandle handle ) (SFBQuery から継承)
このオブジェクトからの別の API を問い合わせます。
SFCError QueryInterface( AEECLSID clsid , SFBBaseSmpPtr handle ) (SFBQuery から継承)
このオブジェクトからの別の API を問い合わせます。
SFBBaseSmp QueryInterface( AEECLSID clsid ) (SFBQuery から継承)
このオブジェクトからの別の API を問い合わせます。
Void Self( AEECLSID clsidReq , SFBQuerySmpPtr clone , AEECLSID clsidImp ) (SFBQuery から継承)
オブジェクトを単一インターフェースで実装するときに使います。
SFBQuerySmp Self( AEECLSID clsidReq , AEECLSID clsidImp ) (SFBQuery から継承)
オブジェクトを単一インターフェースで実装するときに使います。
プロテクト関数
static
SFBBaseSmp
FactoryByCreate( AEECLSID id , SFCErrorPtr exception = null ) (SFBBase から継承)
指定したクラス ID のインターフェースのインスタンスを生成します。
static
SFBBaseSmp
FactoryByQuery( SFBQuerySmpConstRef query , AEECLSID id , SFCErrorPtr exception = null ) (SFBBase から継承)
指定したクラス ID のインターフェースのインスタンスを指定した SFBQuery インスタンスを使用して生成します。

SFBBTSDP::DiscoverDevices
Bluetooth デバイスの検出を開始します。
[ public ]
SFCError DiscoverDevices(
    SFXCallbackPtr callback         // 発見の完了時にスケジュールされているコールバック
    AEEBTDeviceListResult* result   // 結果レコードへのポインタ
                                    // ユーザーは、AEEBTDeviceListResult レコードを割り当てる必要がある
);

戻り値

  • 成功したとき: SFERR_NO_ERROR
  • 失敗したとき: SFERR_FAILED

参照

BREW API IBTSDP_DiscoverDevices


SFBBTSDP::GetDeviceName
指定したデバイスの Bluetooth 名をコールバックで取得します。
[ public ]
SFCError GetDeviceName(
    AEEBTAddr* addr                 // 問い合わせに使用する Bluetooth デバイスのアドレス
    SFXCallbackPtr callback         // 発見の完了時にスケジュールされているコールバック
    AEEBTDeviceNameResult* result   // 結果レコードへのポインタ
                                    // ユーザーは、AEEBTDeviceNameResult レコードを割り当てる必要がある
);

戻り値

  • 成功したとき: SFERR_NO_ERROR
  • 失敗したとき: SFERR_FAILED

参照

BREW API IBTSDP_GetDeviceName | SFXCallback


SFBBTSDP::GetRemoteServerChannel
Bluetooth サーバーチャネルをコールバックで取得します。
[ public ]
SFCError GetRemoteServerChannel(
    AEEBTAddr* addr                    // 問い合わせに使用する Bluetooth デバイスのアドレス
    UInt16 serviceClass                // 問い合わせに使用するサービスクラス
    SFXCallbackPtr callback            // 発見の完了時にスケジュールされているコールバック
    AEEBTServerChannelResult* result   // 結果レコードへのポインタ
                                       // ユーザーは、AEEBTServerChannelResult レコードを割り当てる必要がある
);

戻り値

  • 成功したとき: SFERR_NO_ERROR
  • 失敗したとき: SFERR_FAILED

参照

BREW API IBTSDP_GetRemoteServerChannel | SFXCallback


SFBBTSDP::NewInstance
SFBBTSDP インスタンスを生成します。
[ public, static ]
SFBBTSDPSmp NewInstance(
    SFCErrorPtr exception = null   // エラー値
);
[ public, static ]
SFBBTSDPSmp NewInstance(
    AEECLSID id                    // クラスID
    SFCErrorPtr exception = null   // エラー値
);