C-WaveformGeneratorを終了し、アクセスを不可にします。
Ret = GenCloseApplication ( AppId , CloseStatus)
AppId [ VB.NET: Short ] [ C++: short ] [ C#: short ]
GenOpenApplicationで取得したアプリケーションIDを指定します。
CloseStatus [ VB.NET: Integer ] [ C++: long * ] [ C#: out int ]
C-WaveformGeneratorを終了したときのステータスを返します。
Ret [ VB.NET: Integer ] [ C++: long ] [ C#: int ]
定義 |
戻り値 [Dec] |
内容 |
GEN_ERR_SUCCESS |
0 |
正常終了 |
その他のエラー(参照:エラーコード一覧)
終了処理を行います。
VB.NET |
Dim Ret As Integer Dim CloseStatus As Integer Ret = GenCloseApplication(AppId, CloseStatus)
|
C++ |
long Ret; long CloseStatus; Ret = GenCloseApplication(AppId, &CloseSttus);
|
C# |
int Ret; int CloseStatus; Ret = gen.CloseApplication(AppId, out CloseStatus);
|