Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
データベースサーバに、外部事前フィルタライブラリに実装されているインタフェースバージョンについて通知します。現在、バージョン 1 のインタフェースのみがサポートされています。
この関数は外部事前フィルタライブラリに必要です。
extern "C" a_sql_uint32 ( extpf_use_new_api )( void );
関数は符号なし 32 ビット整数値を返します。戻り値は、extpfapiv1.h で定義した EXTPF_V1_API のインタフェースバージョン番号です。
この関数の一般的な実装を次に示します。
extern "C" a_sql_uint32 ( extpf_use_new_api )( void ) { return EXTPF_V1_API; }