CanQueryDeviceName


機能

使用可能なデバイスの一覧を取得します。

書式

Ret = CanQueryDeviceName ( Index , DeviceName , Device )

引数

Index [ VB.NET: Short ] [ C, C++: short ] [ C#: short ]
最初に0を指定し、以降+1づつ値を指定します。

DeviceName [ VB.NET: String ] [ C, C++: char * ] [ C#: out string ]
デバイス名を返します。(例:"CAN000")

Device [ VB.NET: String ] [ C, C++: char * ] [ C#: out string ]
デバイス名称を返します。(例:"CAN-4P-PE")

戻り値

Ret [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ]

定義

戻り値
[Dec]

内容

CAN_ERR_SUCCESS

0

正常終了

CAN_ERR_INFO_NOT_FIND_DEVICE

10051

利用可能なデバイスが見つかりません。
デバイスが、デバイスマネージャーに登録されているかを確認してください。

その他のエラー(参照:エラーコード詳細

初期値

なし

説明

使用するデバイスを選択させるような、汎用的なアプリケーションを作成する場合に利用します。
Indexを0から順に+1していき、エラーになるまで処理を繰り返してください。

C, C++の場合、

for (int Index = 0; Ret CAN_ERR_SUCCESS; Index++){
    Ret = CanQueryDeviceName ( Index , DeviceName , Device );
}
 

使用例

Index=0で情報を取得します。

VB.NET

Dim Ret As Integer
Dim DeviceName As String = Space(256)
Dim Device As String = Space(256)
Ret = CanQueryDeviceName ( 0 , DeviceName , Device )
 

C, C++

long Ret;
char DeviceName[256];
char Device[256];
Ret = CanQueryDeviceName ( 0 , DeviceName , Device );
 

C#

int Ret;
string DeviceName;
string Device;
Ret = dio.QueryDeviceName ( 0 , out DeviceName , out Device );
 

関連項目

なし