YdxAiGetBuffer¶
機能¶
データバッファの設定を取得します。
書式¶
INT YdxAiGetBuffer(
INT id,
INT* bufferType
);
パラメータ¶
id¶
YdxOpen関数 で取得したIDを指定します。
言語 | C# | VB(.NET2002以降) | VB6.0 | C++/CLI | C/C++ |
---|---|---|---|---|---|
型 | int | Integer | Long | int | INT |
bufferType¶
データバッファの形式を格納する変数へのポインタを指定します。
値 | 意味 |
---|---|
0 | FIFOバッファ形式 |
1 | リングバッファ形式 |
言語 | C# | VB(.NET2002以降) | VB6.0 | C++/CLI | C/C++ |
---|---|---|---|---|---|
型 | out int | Integer | Long | int* | INT* |
戻り値¶
関数が正常に終了した場合は、0(YDX_RESULT_SUCCESS)が返ります。
正常に終了しなかった場合は、0以外が返ります。
詳細は、戻り値一覧 を参照してください。
言語 | C# | VB(.NET2002以降) | VB6.0 | C++/CLI | C/C++ |
---|---|---|---|---|---|
型 | int | Integer | Long | int | INT |
備考¶
パラメータの詳細については、YdxAiSetBuffer関数 を参照してください。
使用例¶
データバッファの設定を取得します。
C#¶
int result;
int bufferType;
result = Ydx.AiGetBuffer(id, out bufferType);
VB(.NET2002以降)¶
Dim result As Integer
Dim bufferType As Integer
result = YdxAiGetBuffer(id, bufferType)
VB6.0¶
Dim result As Long
Dim bufferType As Long
result = YdxAiGetBuffer(id, bufferType)
C++/CLI¶
int result;
int bufferType;
result = YdxAiGetBuffer(id, &bufferType);
C/C++¶
INT result;
INT bufferType;
result = YdxAiGetBuffer(id, &bufferType);